Skip to content

Latest commit

 

History

History
117 lines (62 loc) · 3.24 KB

SamlConnectionMetadata.md

File metadata and controls

117 lines (62 loc) · 3.24 KB

SamlConnectionMetadata

Properties

Name Type Description Notes
Name Pointer to string ID of the SAML service.
Enabled Pointer to bool Determines if this SAML connection active.
AccountId Pointer to float32
MetadataDocument Pointer to string Identity Provider metadata XML document.

Methods

GetName

func (o *SamlConnectionMetadata) GetName() string

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

GetNameOk

func (o *SamlConnectionMetadata) 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.

HasName

func (o *SamlConnectionMetadata) HasName() bool

HasName returns a boolean if a field has been set.

SetName

func (o *SamlConnectionMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

GetEnabled

func (o *SamlConnectionMetadata) GetEnabled() bool

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

GetEnabledOk

func (o *SamlConnectionMetadata) 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.

HasEnabled

func (o *SamlConnectionMetadata) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

SetEnabled

func (o *SamlConnectionMetadata) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

GetAccountId

func (o *SamlConnectionMetadata) GetAccountId() float32

GetAccountId returns the AccountId field if non-nil, zero value otherwise.

GetAccountIdOk

func (o *SamlConnectionMetadata) GetAccountIdOk() (float32, bool)

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

HasAccountId

func (o *SamlConnectionMetadata) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

SetAccountId

func (o *SamlConnectionMetadata) SetAccountId(v float32)

SetAccountId gets a reference to the given float32 and assigns it to the AccountId field.

GetMetadataDocument

func (o *SamlConnectionMetadata) GetMetadataDocument() string

GetMetadataDocument returns the MetadataDocument field if non-nil, zero value otherwise.

GetMetadataDocumentOk

func (o *SamlConnectionMetadata) GetMetadataDocumentOk() (string, bool)

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

HasMetadataDocument

func (o *SamlConnectionMetadata) HasMetadataDocument() bool

HasMetadataDocument returns a boolean if a field has been set.

SetMetadataDocument

func (o *SamlConnectionMetadata) SetMetadataDocument(v string)

SetMetadataDocument gets a reference to the given string and assigns it to the MetadataDocument field.

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