Skip to content

Latest commit

 

History

History
91 lines (48 loc) · 2.57 KB

ScimUsersListResponse.md

File metadata and controls

91 lines (48 loc) · 2.57 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 int32 Number of total results in the response. [optional]

Methods

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.

HasResources

func (o *ScimUsersListResponse) HasResources() bool

HasResources returns a boolean if a field has been set.

SetResources

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

SetResources gets a reference to the given []ScimUser and assigns it to the Resources field.

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.

HasSchemas

func (o *ScimUsersListResponse) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

SetSchemas

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

SetSchemas gets a reference to the given []string and assigns it to the Schemas field.

GetTotalResults

func (o *ScimUsersListResponse) GetTotalResults() int32

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

GetTotalResultsOk

func (o *ScimUsersListResponse) GetTotalResultsOk() (int32, 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.

HasTotalResults

func (o *ScimUsersListResponse) HasTotalResults() bool

HasTotalResults returns a boolean if a field has been set.

SetTotalResults

func (o *ScimUsersListResponse) SetTotalResults(v int32)

SetTotalResults gets a reference to the given int32 and assigns it to the TotalResults field.

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