Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 3.9 KB

SCIMSourceGroup.md

File metadata and controls

150 lines (81 loc) · 3.9 KB

SCIMSourceGroup

Properties

Name Type Description Notes
Id string
Group string
GroupObj UserGroup [readonly]
Source string
Attributes Pointer to interface{} [optional]

Methods

NewSCIMSourceGroup

func NewSCIMSourceGroup(id string, group string, groupObj UserGroup, source string, ) *SCIMSourceGroup

NewSCIMSourceGroup instantiates a new SCIMSourceGroup 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

NewSCIMSourceGroupWithDefaults

func NewSCIMSourceGroupWithDefaults() *SCIMSourceGroup

NewSCIMSourceGroupWithDefaults instantiates a new SCIMSourceGroup 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 *SCIMSourceGroup) GetId() string

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

GetIdOk

func (o *SCIMSourceGroup) 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 *SCIMSourceGroup) SetId(v string)

SetId sets Id field to given value.

GetGroup

func (o *SCIMSourceGroup) GetGroup() string

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

GetGroupOk

func (o *SCIMSourceGroup) 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 *SCIMSourceGroup) SetGroup(v string)

SetGroup sets Group field to given value.

GetGroupObj

func (o *SCIMSourceGroup) GetGroupObj() UserGroup

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

GetGroupObjOk

func (o *SCIMSourceGroup) 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 *SCIMSourceGroup) SetGroupObj(v UserGroup)

SetGroupObj sets GroupObj field to given value.

GetSource

func (o *SCIMSourceGroup) GetSource() string

GetSource returns the Source field if non-nil, zero value otherwise.

GetSourceOk

func (o *SCIMSourceGroup) GetSourceOk() (*string, bool)

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

SetSource

func (o *SCIMSourceGroup) SetSource(v string)

SetSource sets Source field to given value.

GetAttributes

func (o *SCIMSourceGroup) GetAttributes() interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *SCIMSourceGroup) GetAttributesOk() (*interface{}, bool)

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

SetAttributes

func (o *SCIMSourceGroup) SetAttributes(v interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *SCIMSourceGroup) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

SetAttributesNil

func (o *SCIMSourceGroup) SetAttributesNil(b bool)

SetAttributesNil sets the value for Attributes to be an explicit nil

UnsetAttributes

func (o *SCIMSourceGroup) UnsetAttributes()

UnsetAttributes ensures that no value is present for Attributes, not even an explicit nil

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