Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.06 KB

ConnectUserRequest.md

File metadata and controls

114 lines (61 loc) · 3.06 KB

ConnectUserRequest

Properties

Name Type Description Notes
Username string
FirstName string
LastName string
Email string

Methods

NewConnectUserRequest

func NewConnectUserRequest(username string, firstName string, lastName string, email string, ) *ConnectUserRequest

NewConnectUserRequest instantiates a new ConnectUserRequest 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

NewConnectUserRequestWithDefaults

func NewConnectUserRequestWithDefaults() *ConnectUserRequest

NewConnectUserRequestWithDefaults instantiates a new ConnectUserRequest 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

GetUsername

func (o *ConnectUserRequest) GetUsername() string

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

GetUsernameOk

func (o *ConnectUserRequest) 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 *ConnectUserRequest) SetUsername(v string)

SetUsername sets Username field to given value.

GetFirstName

func (o *ConnectUserRequest) GetFirstName() string

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

GetFirstNameOk

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

SetFirstName sets FirstName field to given value.

GetLastName

func (o *ConnectUserRequest) GetLastName() string

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

GetLastNameOk

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

SetLastName sets LastName field to given value.

GetEmail

func (o *ConnectUserRequest) GetEmail() string

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

GetEmailOk

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

SetEmail sets Email field to given value.

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