Documentation
¶
Index ¶
- type GetOrgAttributes
- type GetOrganizationResponse
- type Group
- type OrgAttributes
- type OrgFeatureFlagResponse
- type OrgIgnoreSettings
- type OrgRelationships
- type OrgRequestAccessSettings
- type OrgSettingsResponse
- type Organization
- type OrganizationsResponse
- type SelfResponse
- type SelfResponseData
- type SelfResponseDataAttribute
- type UserMe
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetOrgAttributes ¶
type GetOrganizationResponse ¶
type GetOrganizationResponse struct {
Data struct {
Id string `json:"id"`
Type string `json:"type"`
Attributes GetOrgAttributes `json:"attributes"`
} `json:"data"`
Jsonapi struct {
Version string `json:"version"`
} `json:"jsonapi"`
Links struct {
Self string `json:"self"`
} `json:"links"`
}
type OrgAttributes ¶
type OrgFeatureFlagResponse ¶
type OrgIgnoreSettings ¶
type OrgRelationships ¶
type OrgRequestAccessSettings ¶
type OrgRequestAccessSettings struct {
Enabled bool `json:"enabled,omitempty"`
}
type OrgSettingsResponse ¶
type OrgSettingsResponse struct {
Ignores *OrgIgnoreSettings `json:"ignores"`
RequestAccess *OrgRequestAccessSettings `json:"requestAccess"`
}
type Organization ¶
type Organization struct {
Id string `json:"id"`
Type string `json:"type"`
Attributes OrgAttributes `json:"attributes"`
Relationships OrgRelationships `json:"relationships"`
}
type OrganizationsResponse ¶
type OrganizationsResponse struct {
Organizations []Organization `json:"data"`
Jsonapi struct {
Version string `json:"version"`
} `json:"jsonapi"`
Links struct {
Self string `json:"self"`
First string `json:"first"`
} `json:"links"`
}
type SelfResponse ¶
type SelfResponse struct {
Data SelfResponseData
}
type SelfResponseData ¶
type SelfResponseData struct {
Attributes SelfResponseDataAttribute `json:"attributes,omitempty"`
Id string `json:"id,omitempty"`
Type string `json:"type,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.