Skip to content

Latest commit

 

History

History
262 lines (145 loc) · 6.23 KB

User.md

File metadata and controls

262 lines (145 loc) · 6.23 KB

User

Properties

Name Type Description Notes
Id Pointer to string [optional]
Email Pointer to NullableString [optional]
Provider Pointer to NullableString [optional]
MfaEnrolled Pointer to bool [optional]
FirstName Pointer to NullableString [optional]
LastName Pointer to NullableString [optional]
Picture Pointer to NullableString [optional]

Methods

NewUser

func NewUser() *User

NewUser instantiates a new User 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

NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User 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

GetId

func (o *User) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *User) GetIdOk() (*string, bool)

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

SetId

func (o *User) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

GetEmail

func (o *User) GetEmail() string

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

GetEmailOk

func (o *User) 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 *User) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *User) HasEmail() bool

HasEmail returns a boolean if a field has been set.

SetEmailNil

func (o *User) SetEmailNil(b bool)

SetEmailNil sets the value for Email to be an explicit nil

UnsetEmail

func (o *User) UnsetEmail()

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

GetProvider

func (o *User) GetProvider() string

GetProvider returns the Provider field if non-nil, zero value otherwise.

GetProviderOk

func (o *User) GetProviderOk() (*string, bool)

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

SetProvider

func (o *User) SetProvider(v string)

SetProvider sets Provider field to given value.

HasProvider

func (o *User) HasProvider() bool

HasProvider returns a boolean if a field has been set.

SetProviderNil

func (o *User) SetProviderNil(b bool)

SetProviderNil sets the value for Provider to be an explicit nil

UnsetProvider

func (o *User) UnsetProvider()

UnsetProvider ensures that no value is present for Provider, not even an explicit nil

GetMfaEnrolled

func (o *User) GetMfaEnrolled() bool

GetMfaEnrolled returns the MfaEnrolled field if non-nil, zero value otherwise.

GetMfaEnrolledOk

func (o *User) GetMfaEnrolledOk() (*bool, bool)

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

SetMfaEnrolled

func (o *User) SetMfaEnrolled(v bool)

SetMfaEnrolled sets MfaEnrolled field to given value.

HasMfaEnrolled

func (o *User) HasMfaEnrolled() bool

HasMfaEnrolled returns a boolean if a field has been set.

GetFirstName

func (o *User) GetFirstName() string

GetFirstName returns the FirstName field if non-nil, zero value otherwise.

GetFirstNameOk

func (o *User) GetFirstNameOk() (*string, bool)

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

SetFirstName

func (o *User) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *User) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

SetFirstNameNil

func (o *User) SetFirstNameNil(b bool)

SetFirstNameNil sets the value for FirstName to be an explicit nil

UnsetFirstName

func (o *User) UnsetFirstName()

UnsetFirstName ensures that no value is present for FirstName, not even an explicit nil

GetLastName

func (o *User) GetLastName() string

GetLastName returns the LastName field if non-nil, zero value otherwise.

GetLastNameOk

func (o *User) GetLastNameOk() (*string, bool)

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

SetLastName

func (o *User) SetLastName(v string)

SetLastName sets LastName field to given value.

HasLastName

func (o *User) HasLastName() bool

HasLastName returns a boolean if a field has been set.

SetLastNameNil

func (o *User) SetLastNameNil(b bool)

SetLastNameNil sets the value for LastName to be an explicit nil

UnsetLastName

func (o *User) UnsetLastName()

UnsetLastName ensures that no value is present for LastName, not even an explicit nil

GetPicture

func (o *User) GetPicture() string

GetPicture returns the Picture field if non-nil, zero value otherwise.

GetPictureOk

func (o *User) GetPictureOk() (*string, bool)

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

SetPicture

func (o *User) SetPicture(v string)

SetPicture sets Picture field to given value.

HasPicture

func (o *User) HasPicture() bool

HasPicture returns a boolean if a field has been set.

SetPictureNil

func (o *User) SetPictureNil(b bool)

SetPictureNil sets the value for Picture to be an explicit nil

UnsetPicture

func (o *User) UnsetPicture()

UnsetPicture ensures that no value is present for Picture, not even an explicit nil

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