Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.54 KB

BaseUserPersonalDetails.md

File metadata and controls

160 lines (87 loc) · 4.54 KB

BaseUserPersonalDetails

Properties

Name Type Description Notes
FirstName Pointer to string [optional]
MiddleName Pointer to string [optional]
LastName Pointer to string [optional]
Organization Pointer to string [optional]
Department Pointer to string [optional]

Methods

NewBaseUserPersonalDetails

func NewBaseUserPersonalDetails() *BaseUserPersonalDetails

NewBaseUserPersonalDetails instantiates a new BaseUserPersonalDetails 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

NewBaseUserPersonalDetailsWithDefaults

func NewBaseUserPersonalDetailsWithDefaults() *BaseUserPersonalDetails

NewBaseUserPersonalDetailsWithDefaults instantiates a new BaseUserPersonalDetails 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

GetFirstName

func (o *BaseUserPersonalDetails) GetFirstName() string

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

GetFirstNameOk

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

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *BaseUserPersonalDetails) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetMiddleName

func (o *BaseUserPersonalDetails) GetMiddleName() string

GetMiddleName returns the MiddleName field if non-nil, zero value otherwise.

GetMiddleNameOk

func (o *BaseUserPersonalDetails) GetMiddleNameOk() (*string, bool)

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

SetMiddleName

func (o *BaseUserPersonalDetails) SetMiddleName(v string)

SetMiddleName sets MiddleName field to given value.

HasMiddleName

func (o *BaseUserPersonalDetails) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

GetLastName

func (o *BaseUserPersonalDetails) GetLastName() string

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

GetLastNameOk

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

SetLastName sets LastName field to given value.

HasLastName

func (o *BaseUserPersonalDetails) HasLastName() bool

HasLastName returns a boolean if a field has been set.

GetOrganization

func (o *BaseUserPersonalDetails) GetOrganization() string

GetOrganization returns the Organization field if non-nil, zero value otherwise.

GetOrganizationOk

func (o *BaseUserPersonalDetails) GetOrganizationOk() (*string, bool)

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

SetOrganization

func (o *BaseUserPersonalDetails) SetOrganization(v string)

SetOrganization sets Organization field to given value.

HasOrganization

func (o *BaseUserPersonalDetails) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

GetDepartment

func (o *BaseUserPersonalDetails) GetDepartment() string

GetDepartment returns the Department field if non-nil, zero value otherwise.

GetDepartmentOk

func (o *BaseUserPersonalDetails) GetDepartmentOk() (*string, bool)

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

SetDepartment

func (o *BaseUserPersonalDetails) SetDepartment(v string)

SetDepartment sets Department field to given value.

HasDepartment

func (o *BaseUserPersonalDetails) HasDepartment() bool

HasDepartment returns a boolean if a field has been set.

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