Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 1.02 KB

IdentifiableEntity.md

File metadata and controls

39 lines (20 loc) · 1.02 KB

IdentifiableEntity

Properties

Name Type Description Notes
Id Pointer to int32 Unique ID for this entity. Not to be confused with the Integration ID, which is set by your integration layer and used in most endpoints.

Methods

GetId

func (o *IdentifiableEntity) GetId() int32

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

GetIdOk

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

HasId

func (o *IdentifiableEntity) HasId() bool

HasId returns a boolean if a field has been set.

SetId

func (o *IdentifiableEntity) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

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