Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.92 KB

File metadata and controls

108 lines (59 loc) · 2.92 KB

CreateUserRequest

Properties

Name Type Description Notes
Email Pointer to string [optional]
Username Pointer to string [optional]
Permissions Pointer to float32 [optional]

Methods

NewCreateUserRequest

func NewCreateUserRequest() *CreateUserRequest

NewCreateUserRequest instantiates a new CreateUserRequest 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

NewCreateUserRequestWithDefaults

func NewCreateUserRequestWithDefaults() *CreateUserRequest

NewCreateUserRequestWithDefaults instantiates a new CreateUserRequest 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

GetEmail

func (o *CreateUserRequest) GetEmail() string

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

GetEmailOk

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

SetEmail sets Email field to given value.

HasEmail

func (o *CreateUserRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetUsername

func (o *CreateUserRequest) GetUsername() string

GetUsername returns the Username field if non-nil, zero value otherwise.

GetUsernameOk

func (o *CreateUserRequest) GetUsernameOk() (*string, bool)

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

SetUsername

func (o *CreateUserRequest) SetUsername(v string)

SetUsername sets Username field to given value.

HasUsername

func (o *CreateUserRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

GetPermissions

func (o *CreateUserRequest) GetPermissions() float32

GetPermissions returns the Permissions field if non-nil, zero value otherwise.

GetPermissionsOk

func (o *CreateUserRequest) GetPermissionsOk() (*float32, bool)

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

SetPermissions

func (o *CreateUserRequest) SetPermissions(v float32)

SetPermissions sets Permissions field to given value.

HasPermissions

func (o *CreateUserRequest) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

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