Skip to content

Latest commit

 

History

History
91 lines (48 loc) · 2.42 KB

NewEventType.md

File metadata and controls

91 lines (48 loc) · 2.42 KB

NewEventType

Properties

Name Type Description Notes
Title Pointer to string The human-friendly name for this event type.
Name Pointer to string The integration name for this event type. This will be used in URLs and cannot be changed after an event type has been created.
Description Pointer to string A description of what the event represents. [optional]

Methods

GetTitle

func (o *NewEventType) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *NewEventType) GetTitleOk() (string, bool)

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

HasTitle

func (o *NewEventType) HasTitle() bool

HasTitle returns a boolean if a field has been set.

SetTitle

func (o *NewEventType) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

GetName

func (o *NewEventType) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *NewEventType) GetNameOk() (string, bool)

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

HasName

func (o *NewEventType) HasName() bool

HasName returns a boolean if a field has been set.

SetName

func (o *NewEventType) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

GetDescription

func (o *NewEventType) GetDescription() string

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

GetDescriptionOk

func (o *NewEventType) 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.

HasDescription

func (o *NewEventType) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescription

func (o *NewEventType) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

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