Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 3.06 KB

File metadata and controls

103 lines (56 loc) · 3.06 KB

ScimUsersListResponse

Properties

Name Type Description Notes
Resources Pointer to []ScimUser
Schemas Pointer to []string SCIM schema for the given resource. [optional]
TotalResults Pointer to int64 Number of total results in the response. [optional]

Methods

NewScimUsersListResponse

func NewScimUsersListResponse(resources []ScimUser, ) *ScimUsersListResponse

NewScimUsersListResponse instantiates a new ScimUsersListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewScimUsersListResponseWithDefaults

func NewScimUsersListResponseWithDefaults() *ScimUsersListResponse

NewScimUsersListResponseWithDefaults instantiates a new ScimUsersListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetResources

func (o *ScimUsersListResponse) GetResources() []ScimUser

GetResources returns the Resources field if non-nil, zero value otherwise.

GetResourcesOk

func (o *ScimUsersListResponse) GetResourcesOk() (*[]ScimUser, bool)

GetResourcesOk returns a tuple with the Resources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetResources

func (o *ScimUsersListResponse) SetResources(v []ScimUser)

SetResources sets Resources field to given value.

GetSchemas

func (o *ScimUsersListResponse) GetSchemas() []string

GetSchemas returns the Schemas field if non-nil, zero value otherwise.

GetSchemasOk

func (o *ScimUsersListResponse) GetSchemasOk() (*[]string, bool)

GetSchemasOk returns a tuple with the Schemas field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSchemas

func (o *ScimUsersListResponse) SetSchemas(v []string)

SetSchemas sets Schemas field to given value.

HasSchemas

func (o *ScimUsersListResponse) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

GetTotalResults

func (o *ScimUsersListResponse) GetTotalResults() int64

GetTotalResults returns the TotalResults field if non-nil, zero value otherwise.

GetTotalResultsOk

func (o *ScimUsersListResponse) GetTotalResultsOk() (*int64, bool)

GetTotalResultsOk returns a tuple with the TotalResults field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTotalResults

func (o *ScimUsersListResponse) SetTotalResults(v int64)

SetTotalResults sets TotalResults field to given value.

HasTotalResults

func (o *ScimUsersListResponse) HasTotalResults() bool

HasTotalResults returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]