type OrganizationPageScheme struct {
Size int `json:"size,omitempty"`
Start int `json:"start,omitempty"`
Limit int `json:"limit,omitempty"`
IsLastPage bool `json:"isLastPage,omitempty"`
Values []*OrganizationScheme `json:"values,omitempty"`
Expands []string `json:"_expands,omitempty"`
Links *OrganizationPageLinkScheme `json:"_links,omitempty"`
type OrganizationPageLinkScheme struct {
Self string `json:"self,omitempty"`
Base string `json:"base,omitempty"`
Context string `json:"context,omitempty"`
Next string `json:"next,omitempty"`
Prev string `json:"prev,omitempty"`
type OrganizationScheme struct {
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Self string `json:"self,omitempty"`
} `json:"_links,omitempty"`