Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.21 KB

CreateUserDefinition.md

File metadata and controls

114 lines (61 loc) · 3.21 KB

CreateUserDefinition

Properties

Name Type Description Notes
FirstName string First name of the user.
LastName string Last name of the user.
Email string Email address of the user.
RoleIds []string List of roleIds associated with the user.

Methods

NewCreateUserDefinition

func NewCreateUserDefinition(firstName string, lastName string, email string, roleIds []string, ) *CreateUserDefinition

NewCreateUserDefinition instantiates a new CreateUserDefinition 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

NewCreateUserDefinitionWithDefaults

func NewCreateUserDefinitionWithDefaults() *CreateUserDefinition

NewCreateUserDefinitionWithDefaults instantiates a new CreateUserDefinition 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 *CreateUserDefinition) GetFirstName() string

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

GetFirstNameOk

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

SetFirstName sets FirstName field to given value.

GetLastName

func (o *CreateUserDefinition) GetLastName() string

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

GetLastNameOk

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

SetLastName sets LastName field to given value.

GetEmail

func (o *CreateUserDefinition) GetEmail() string

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

GetEmailOk

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

SetEmail sets Email field to given value.

GetRoleIds

func (o *CreateUserDefinition) GetRoleIds() []string

GetRoleIds returns the RoleIds field if non-nil, zero value otherwise.

GetRoleIdsOk

func (o *CreateUserDefinition) GetRoleIdsOk() (*[]string, bool)

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

SetRoleIds

func (o *CreateUserDefinition) SetRoleIds(v []string)

SetRoleIds sets RoleIds field to given value.

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