Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 4.31 KB

SCIMSourceRequest.md

File metadata and controls

150 lines (81 loc) · 4.31 KB

SCIMSourceRequest

Properties

Name Type Description Notes
Name string Source's display Name.
Slug string Internal source name, used in URLs.
Enabled Pointer to bool [optional]
UserMatchingMode Pointer to UserMatchingModeEnum How the source determines if an existing user should be authenticated or a new user enrolled. [optional]
UserPathTemplate Pointer to string [optional]

Methods

NewSCIMSourceRequest

func NewSCIMSourceRequest(name string, slug string, ) *SCIMSourceRequest

NewSCIMSourceRequest instantiates a new SCIMSourceRequest 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

NewSCIMSourceRequestWithDefaults

func NewSCIMSourceRequestWithDefaults() *SCIMSourceRequest

NewSCIMSourceRequestWithDefaults instantiates a new SCIMSourceRequest 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

GetName

func (o *SCIMSourceRequest) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *SCIMSourceRequest) GetNameOk() (*string, bool)

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

SetName

func (o *SCIMSourceRequest) SetName(v string)

SetName sets Name field to given value.

GetSlug

func (o *SCIMSourceRequest) GetSlug() string

GetSlug returns the Slug field if non-nil, zero value otherwise.

GetSlugOk

func (o *SCIMSourceRequest) GetSlugOk() (*string, bool)

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

SetSlug

func (o *SCIMSourceRequest) SetSlug(v string)

SetSlug sets Slug field to given value.

GetEnabled

func (o *SCIMSourceRequest) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *SCIMSourceRequest) GetEnabledOk() (*bool, bool)

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

SetEnabled

func (o *SCIMSourceRequest) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *SCIMSourceRequest) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetUserMatchingMode

func (o *SCIMSourceRequest) GetUserMatchingMode() UserMatchingModeEnum

GetUserMatchingMode returns the UserMatchingMode field if non-nil, zero value otherwise.

GetUserMatchingModeOk

func (o *SCIMSourceRequest) GetUserMatchingModeOk() (*UserMatchingModeEnum, bool)

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

SetUserMatchingMode

func (o *SCIMSourceRequest) SetUserMatchingMode(v UserMatchingModeEnum)

SetUserMatchingMode sets UserMatchingMode field to given value.

HasUserMatchingMode

func (o *SCIMSourceRequest) HasUserMatchingMode() bool

HasUserMatchingMode returns a boolean if a field has been set.

GetUserPathTemplate

func (o *SCIMSourceRequest) GetUserPathTemplate() string

GetUserPathTemplate returns the UserPathTemplate field if non-nil, zero value otherwise.

GetUserPathTemplateOk

func (o *SCIMSourceRequest) GetUserPathTemplateOk() (*string, bool)

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

SetUserPathTemplate

func (o *SCIMSourceRequest) SetUserPathTemplate(v string)

SetUserPathTemplate sets UserPathTemplate field to given value.

HasUserPathTemplate

func (o *SCIMSourceRequest) HasUserPathTemplate() bool

HasUserPathTemplate returns a boolean if a field has been set.

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