Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.67 KB

File metadata and controls

108 lines (59 loc) · 2.67 KB

Event

Properties

Name Type Description Notes
ProjectId Pointer to int32 [optional]
UserId Pointer to int32 [optional]
Description Pointer to string [optional]

Methods

NewEvent

func NewEvent() *Event

NewEvent instantiates a new Event 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

NewEventWithDefaults

func NewEventWithDefaults() *Event

NewEventWithDefaults instantiates a new Event 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

GetProjectId

func (o *Event) GetProjectId() int32

GetProjectId returns the ProjectId field if non-nil, zero value otherwise.

GetProjectIdOk

func (o *Event) GetProjectIdOk() (*int32, bool)

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

SetProjectId

func (o *Event) SetProjectId(v int32)

SetProjectId sets ProjectId field to given value.

HasProjectId

func (o *Event) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

GetUserId

func (o *Event) GetUserId() int32

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *Event) GetUserIdOk() (*int32, bool)

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

SetUserId

func (o *Event) SetUserId(v int32)

SetUserId sets UserId field to given value.

HasUserId

func (o *Event) HasUserId() bool

HasUserId returns a boolean if a field has been set.

GetDescription

func (o *Event) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *Event) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *Event) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Event) HasDescription() bool

HasDescription returns a boolean if a field has been set.

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