Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.53 KB

AccountInfo.md

File metadata and controls

212 lines (115 loc) · 5.53 KB

AccountInfo

Properties

Name Type Description Notes
Id Pointer to string [optional]
CreatedAt Pointer to time.Time [optional]
Nickname Pointer to string [optional]
FirstName Pointer to string [optional]
LastName Pointer to string [optional]
ProfilePictureUrl Pointer to string [optional]
CommunicationEmail Pointer to string [optional]

Methods

NewAccountInfo

func NewAccountInfo() *AccountInfo

NewAccountInfo instantiates a new AccountInfo 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

NewAccountInfoWithDefaults

func NewAccountInfoWithDefaults() *AccountInfo

NewAccountInfoWithDefaults instantiates a new AccountInfo 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 *AccountInfo) GetId() string

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

GetIdOk

func (o *AccountInfo) 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 *AccountInfo) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *AccountInfo) HasId() bool

HasId returns a boolean if a field has been set.

GetCreatedAt

func (o *AccountInfo) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *AccountInfo) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *AccountInfo) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *AccountInfo) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetNickname

func (o *AccountInfo) GetNickname() string

GetNickname returns the Nickname field if non-nil, zero value otherwise.

GetNicknameOk

func (o *AccountInfo) GetNicknameOk() (*string, bool)

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

SetNickname

func (o *AccountInfo) SetNickname(v string)

SetNickname sets Nickname field to given value.

HasNickname

func (o *AccountInfo) HasNickname() bool

HasNickname returns a boolean if a field has been set.

GetFirstName

func (o *AccountInfo) GetFirstName() string

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

GetFirstNameOk

func (o *AccountInfo) 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 *AccountInfo) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *AccountInfo) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetLastName

func (o *AccountInfo) GetLastName() string

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

GetLastNameOk

func (o *AccountInfo) 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 *AccountInfo) SetLastName(v string)

SetLastName sets LastName field to given value.

HasLastName

func (o *AccountInfo) HasLastName() bool

HasLastName returns a boolean if a field has been set.

GetProfilePictureUrl

func (o *AccountInfo) GetProfilePictureUrl() string

GetProfilePictureUrl returns the ProfilePictureUrl field if non-nil, zero value otherwise.

GetProfilePictureUrlOk

func (o *AccountInfo) GetProfilePictureUrlOk() (*string, bool)

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

SetProfilePictureUrl

func (o *AccountInfo) SetProfilePictureUrl(v string)

SetProfilePictureUrl sets ProfilePictureUrl field to given value.

HasProfilePictureUrl

func (o *AccountInfo) HasProfilePictureUrl() bool

HasProfilePictureUrl returns a boolean if a field has been set.

GetCommunicationEmail

func (o *AccountInfo) GetCommunicationEmail() string

GetCommunicationEmail returns the CommunicationEmail field if non-nil, zero value otherwise.

GetCommunicationEmailOk

func (o *AccountInfo) GetCommunicationEmailOk() (*string, bool)

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

SetCommunicationEmail

func (o *AccountInfo) SetCommunicationEmail(v string)

SetCommunicationEmail sets CommunicationEmail field to given value.

HasCommunicationEmail

func (o *AccountInfo) HasCommunicationEmail() bool

HasCommunicationEmail returns a boolean if a field has been set.

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