Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.54 KB

File metadata and controls

124 lines (67 loc) · 3.54 KB

IdpGroupMapping

Properties

Name Type Description Notes
AppResourceId Pointer to string The ID of the app resource. [optional]
GroupId string The ID of the group.
Alias Pointer to string The alias of the group. [optional]
HiddenFromEndUser bool A bool representing whether or not the group is hidden from the end user.

Methods

NewIdpGroupMapping

func NewIdpGroupMapping(groupId string, hiddenFromEndUser bool, ) *IdpGroupMapping

NewIdpGroupMapping instantiates a new IdpGroupMapping 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

NewIdpGroupMappingWithDefaults

func NewIdpGroupMappingWithDefaults() *IdpGroupMapping

NewIdpGroupMappingWithDefaults instantiates a new IdpGroupMapping 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

GetAppResourceId

func (o *IdpGroupMapping) GetAppResourceId() string

GetAppResourceId returns the AppResourceId field if non-nil, zero value otherwise.

GetAppResourceIdOk

func (o *IdpGroupMapping) GetAppResourceIdOk() (*string, bool)

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

SetAppResourceId

func (o *IdpGroupMapping) SetAppResourceId(v string)

SetAppResourceId sets AppResourceId field to given value.

HasAppResourceId

func (o *IdpGroupMapping) HasAppResourceId() bool

HasAppResourceId returns a boolean if a field has been set.

GetGroupId

func (o *IdpGroupMapping) GetGroupId() string

GetGroupId returns the GroupId field if non-nil, zero value otherwise.

GetGroupIdOk

func (o *IdpGroupMapping) GetGroupIdOk() (*string, bool)

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

SetGroupId

func (o *IdpGroupMapping) SetGroupId(v string)

SetGroupId sets GroupId field to given value.

GetAlias

func (o *IdpGroupMapping) GetAlias() string

GetAlias returns the Alias field if non-nil, zero value otherwise.

GetAliasOk

func (o *IdpGroupMapping) GetAliasOk() (*string, bool)

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

SetAlias

func (o *IdpGroupMapping) SetAlias(v string)

SetAlias sets Alias field to given value.

HasAlias

func (o *IdpGroupMapping) HasAlias() bool

HasAlias returns a boolean if a field has been set.

GetHiddenFromEndUser

func (o *IdpGroupMapping) GetHiddenFromEndUser() bool

GetHiddenFromEndUser returns the HiddenFromEndUser field if non-nil, zero value otherwise.

GetHiddenFromEndUserOk

func (o *IdpGroupMapping) GetHiddenFromEndUserOk() (*bool, bool)

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

SetHiddenFromEndUser

func (o *IdpGroupMapping) SetHiddenFromEndUser(v bool)

SetHiddenFromEndUser sets HiddenFromEndUser field to given value.

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