Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.49 KB

SCIMProviderGroup.md

File metadata and controls

135 lines (72 loc) · 3.49 KB

SCIMProviderGroup

Properties

Name Type Description Notes
Id string [readonly]
ScimId string
Group string
GroupObj UserGroup [readonly]
Provider int32

Methods

NewSCIMProviderGroup

func NewSCIMProviderGroup(id string, scimId string, group string, groupObj UserGroup, provider int32, ) *SCIMProviderGroup

NewSCIMProviderGroup instantiates a new SCIMProviderGroup 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

NewSCIMProviderGroupWithDefaults

func NewSCIMProviderGroupWithDefaults() *SCIMProviderGroup

NewSCIMProviderGroupWithDefaults instantiates a new SCIMProviderGroup 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

GetId

func (o *SCIMProviderGroup) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *SCIMProviderGroup) GetIdOk() (*string, bool)

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

SetId

func (o *SCIMProviderGroup) SetId(v string)

SetId sets Id field to given value.

GetScimId

func (o *SCIMProviderGroup) GetScimId() string

GetScimId returns the ScimId field if non-nil, zero value otherwise.

GetScimIdOk

func (o *SCIMProviderGroup) GetScimIdOk() (*string, bool)

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

SetScimId

func (o *SCIMProviderGroup) SetScimId(v string)

SetScimId sets ScimId field to given value.

GetGroup

func (o *SCIMProviderGroup) GetGroup() string

GetGroup returns the Group field if non-nil, zero value otherwise.

GetGroupOk

func (o *SCIMProviderGroup) GetGroupOk() (*string, bool)

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

SetGroup

func (o *SCIMProviderGroup) SetGroup(v string)

SetGroup sets Group field to given value.

GetGroupObj

func (o *SCIMProviderGroup) GetGroupObj() UserGroup

GetGroupObj returns the GroupObj field if non-nil, zero value otherwise.

GetGroupObjOk

func (o *SCIMProviderGroup) GetGroupObjOk() (*UserGroup, bool)

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

SetGroupObj

func (o *SCIMProviderGroup) SetGroupObj(v UserGroup)

SetGroupObj sets GroupObj field to given value.

GetProvider

func (o *SCIMProviderGroup) GetProvider() int32

GetProvider returns the Provider field if non-nil, zero value otherwise.

GetProviderOk

func (o *SCIMProviderGroup) GetProviderOk() (*int32, bool)

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

SetProvider

func (o *SCIMProviderGroup) SetProvider(v int32)

SetProvider sets Provider field to given value.

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