Name | Type | Description | Notes |
---|---|---|---|
Id | string | ||
Nickname | string | ||
Type | ProfileType | ||
Description | Pointer to string | [optional] | |
AccountId | Pointer to string | [optional] |
func NewProfile(id string, nickname string, type_ ProfileType, ) *Profile
NewProfile instantiates a new Profile 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
func NewProfileWithDefaults() *Profile
NewProfileWithDefaults instantiates a new Profile 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
func (o *Profile) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Profile) 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.
func (o *Profile) SetId(v string)
SetId sets Id field to given value.
func (o *Profile) GetNickname() string
GetNickname returns the Nickname field if non-nil, zero value otherwise.
func (o *Profile) 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.
func (o *Profile) SetNickname(v string)
SetNickname sets Nickname field to given value.
func (o *Profile) GetType() ProfileType
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Profile) GetTypeOk() (*ProfileType, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Profile) SetType(v ProfileType)
SetType sets Type field to given value.
func (o *Profile) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *Profile) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Profile) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Profile) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *Profile) GetAccountId() string
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
func (o *Profile) GetAccountIdOk() (*string, 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.
func (o *Profile) SetAccountId(v string)
SetAccountId sets AccountId field to given value.
func (o *Profile) HasAccountId() bool
HasAccountId returns a boolean if a field has been set.