Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.28 KB

File metadata and controls

134 lines (73 loc) · 3.28 KB

InviteFields

Properties

Name Type Description Notes
CreatedAt Pointer to time.Time [optional]
Email Pointer to string [optional]
Id Pointer to int32 [optional]
Status Pointer to string [optional]

Methods

NewInviteFields

func NewInviteFields() *InviteFields

NewInviteFields instantiates a new InviteFields 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

NewInviteFieldsWithDefaults

func NewInviteFieldsWithDefaults() *InviteFields

NewInviteFieldsWithDefaults instantiates a new InviteFields 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

GetCreatedAt

func (o *InviteFields) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *InviteFields) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *InviteFields) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *InviteFields) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetEmail

func (o *InviteFields) GetEmail() string

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

GetEmailOk

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

SetEmail sets Email field to given value.

HasEmail

func (o *InviteFields) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetId

func (o *InviteFields) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *InviteFields) GetIdOk() (*int32, 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.

SetId

func (o *InviteFields) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *InviteFields) HasId() bool

HasId returns a boolean if a field has been set.

GetStatus

func (o *InviteFields) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *InviteFields) GetStatusOk() (*string, bool)

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

SetStatus

func (o *InviteFields) SetStatus(v string)

SetStatus sets Status field to given value.

HasStatus

func (o *InviteFields) HasStatus() bool

HasStatus returns a boolean if a field has been set.

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