Skip to content

Latest commit

 

History

History
164 lines (91 loc) · 4.76 KB

OrganizationAdminModel.md

File metadata and controls

164 lines (91 loc) · 4.76 KB

OrganizationAdminModel

Properties

Name Type Description Notes
UserId Pointer to NullableString Identifier of the Organization Admin. [optional]
FullName Pointer to NullableString Name of the Organization Admin. [optional]
Email Pointer to NullableString Email of the OrganizationAdmin. [optional]
TwoFactorEnabled Pointer to bool Determines whether 2FA is enabled for the Organization Admin. [optional]

Methods

NewOrganizationAdminModel

func NewOrganizationAdminModel() *OrganizationAdminModel

NewOrganizationAdminModel instantiates a new OrganizationAdminModel 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

NewOrganizationAdminModelWithDefaults

func NewOrganizationAdminModelWithDefaults() *OrganizationAdminModel

NewOrganizationAdminModelWithDefaults instantiates a new OrganizationAdminModel 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

GetUserId

func (o *OrganizationAdminModel) GetUserId() string

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *OrganizationAdminModel) GetUserIdOk() (*string, bool)

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

SetUserId

func (o *OrganizationAdminModel) SetUserId(v string)

SetUserId sets UserId field to given value.

HasUserId

func (o *OrganizationAdminModel) HasUserId() bool

HasUserId returns a boolean if a field has been set.

SetUserIdNil

func (o *OrganizationAdminModel) SetUserIdNil(b bool)

SetUserIdNil sets the value for UserId to be an explicit nil

UnsetUserId

func (o *OrganizationAdminModel) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

GetFullName

func (o *OrganizationAdminModel) GetFullName() string

GetFullName returns the FullName field if non-nil, zero value otherwise.

GetFullNameOk

func (o *OrganizationAdminModel) GetFullNameOk() (*string, bool)

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

SetFullName

func (o *OrganizationAdminModel) SetFullName(v string)

SetFullName sets FullName field to given value.

HasFullName

func (o *OrganizationAdminModel) HasFullName() bool

HasFullName returns a boolean if a field has been set.

SetFullNameNil

func (o *OrganizationAdminModel) SetFullNameNil(b bool)

SetFullNameNil sets the value for FullName to be an explicit nil

UnsetFullName

func (o *OrganizationAdminModel) UnsetFullName()

UnsetFullName ensures that no value is present for FullName, not even an explicit nil

GetEmail

func (o *OrganizationAdminModel) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *OrganizationAdminModel) GetEmailOk() (*string, bool)

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

SetEmail

func (o *OrganizationAdminModel) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *OrganizationAdminModel) HasEmail() bool

HasEmail returns a boolean if a field has been set.

SetEmailNil

func (o *OrganizationAdminModel) SetEmailNil(b bool)

SetEmailNil sets the value for Email to be an explicit nil

UnsetEmail

func (o *OrganizationAdminModel) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

GetTwoFactorEnabled

func (o *OrganizationAdminModel) GetTwoFactorEnabled() bool

GetTwoFactorEnabled returns the TwoFactorEnabled field if non-nil, zero value otherwise.

GetTwoFactorEnabledOk

func (o *OrganizationAdminModel) GetTwoFactorEnabledOk() (*bool, bool)

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

SetTwoFactorEnabled

func (o *OrganizationAdminModel) SetTwoFactorEnabled(v bool)

SetTwoFactorEnabled sets TwoFactorEnabled field to given value.

HasTwoFactorEnabled

func (o *OrganizationAdminModel) HasTwoFactorEnabled() bool

HasTwoFactorEnabled returns a boolean if a field has been set.

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