github.com/uvalib/orcid-access-ws@v0.0.0-20250612130209-7d062dbabf9d/orcidaccessws/api/orcid_search_response.go (about)

     1  package api
     2  
     3  // OrcidSearchResponse -- orcid search response
     4  type OrcidSearchResponse struct {
     5  	Status  int             `json:"status"`
     6  	Message string          `json:"message"`
     7  	Start   int             `json:"start"`
     8  	Count   int             `json:"count"`
     9  	Total   int             `json:"total"`
    10  	Results []*OrcidDetails `json:"results"`
    11  }
    12  
    13  //
    14  // end of file
    15  //