Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 6.83 KB

UserProfileAttributeMetadata.md

File metadata and controls

238 lines (129 loc) · 6.83 KB

UserProfileAttributeMetadata

Properties

Name Type Description Notes
Name Pointer to string [optional]
DisplayName Pointer to string [optional]
Required Pointer to bool [optional]
ReadOnly Pointer to bool [optional]
Annotations Pointer to map[string]interface{} [optional]
Validators Pointer to map[string]map[string]interface{} [optional]
Group Pointer to string [optional]
Multivalued Pointer to bool [optional]

Methods

NewUserProfileAttributeMetadata

func NewUserProfileAttributeMetadata() *UserProfileAttributeMetadata

NewUserProfileAttributeMetadata instantiates a new UserProfileAttributeMetadata 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

NewUserProfileAttributeMetadataWithDefaults

func NewUserProfileAttributeMetadataWithDefaults() *UserProfileAttributeMetadata

NewUserProfileAttributeMetadataWithDefaults instantiates a new UserProfileAttributeMetadata 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 *UserProfileAttributeMetadata) GetName() string

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

GetNameOk

func (o *UserProfileAttributeMetadata) 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 *UserProfileAttributeMetadata) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *UserProfileAttributeMetadata) HasName() bool

HasName returns a boolean if a field has been set.

GetDisplayName

func (o *UserProfileAttributeMetadata) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *UserProfileAttributeMetadata) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *UserProfileAttributeMetadata) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *UserProfileAttributeMetadata) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

GetRequired

func (o *UserProfileAttributeMetadata) GetRequired() bool

GetRequired returns the Required field if non-nil, zero value otherwise.

GetRequiredOk

func (o *UserProfileAttributeMetadata) GetRequiredOk() (*bool, bool)

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

SetRequired

func (o *UserProfileAttributeMetadata) SetRequired(v bool)

SetRequired sets Required field to given value.

HasRequired

func (o *UserProfileAttributeMetadata) HasRequired() bool

HasRequired returns a boolean if a field has been set.

GetReadOnly

func (o *UserProfileAttributeMetadata) GetReadOnly() bool

GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise.

GetReadOnlyOk

func (o *UserProfileAttributeMetadata) GetReadOnlyOk() (*bool, bool)

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

SetReadOnly

func (o *UserProfileAttributeMetadata) SetReadOnly(v bool)

SetReadOnly sets ReadOnly field to given value.

HasReadOnly

func (o *UserProfileAttributeMetadata) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

GetAnnotations

func (o *UserProfileAttributeMetadata) GetAnnotations() map[string]interface{}

GetAnnotations returns the Annotations field if non-nil, zero value otherwise.

GetAnnotationsOk

func (o *UserProfileAttributeMetadata) GetAnnotationsOk() (*map[string]interface{}, bool)

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

SetAnnotations

func (o *UserProfileAttributeMetadata) SetAnnotations(v map[string]interface{})

SetAnnotations sets Annotations field to given value.

HasAnnotations

func (o *UserProfileAttributeMetadata) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

GetValidators

func (o *UserProfileAttributeMetadata) GetValidators() map[string]map[string]interface{}

GetValidators returns the Validators field if non-nil, zero value otherwise.

GetValidatorsOk

func (o *UserProfileAttributeMetadata) GetValidatorsOk() (*map[string]map[string]interface{}, bool)

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

SetValidators

func (o *UserProfileAttributeMetadata) SetValidators(v map[string]map[string]interface{})

SetValidators sets Validators field to given value.

HasValidators

func (o *UserProfileAttributeMetadata) HasValidators() bool

HasValidators returns a boolean if a field has been set.

GetGroup

func (o *UserProfileAttributeMetadata) GetGroup() string

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

GetGroupOk

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

SetGroup sets Group field to given value.

HasGroup

func (o *UserProfileAttributeMetadata) HasGroup() bool

HasGroup returns a boolean if a field has been set.

GetMultivalued

func (o *UserProfileAttributeMetadata) GetMultivalued() bool

GetMultivalued returns the Multivalued field if non-nil, zero value otherwise.

GetMultivaluedOk

func (o *UserProfileAttributeMetadata) GetMultivaluedOk() (*bool, bool)

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

SetMultivalued

func (o *UserProfileAttributeMetadata) SetMultivalued(v bool)

SetMultivalued sets Multivalued field to given value.

HasMultivalued

func (o *UserProfileAttributeMetadata) HasMultivalued() bool

HasMultivalued returns a boolean if a field has been set.

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