Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.27 KB

Integration.md

File metadata and controls

82 lines (45 loc) · 2.27 KB

Integration

Properties

Name Type Description Notes
IntegrationId Pointer to string Unique identifier for this integration [optional]
Type Pointer to IntegrationType [optional]

Methods

NewIntegration

func NewIntegration() *Integration

NewIntegration instantiates a new Integration 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

NewIntegrationWithDefaults

func NewIntegrationWithDefaults() *Integration

NewIntegrationWithDefaults instantiates a new Integration 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

GetIntegrationId

func (o *Integration) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field if non-nil, zero value otherwise.

GetIntegrationIdOk

func (o *Integration) GetIntegrationIdOk() (*string, bool)

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

SetIntegrationId

func (o *Integration) SetIntegrationId(v string)

SetIntegrationId sets IntegrationId field to given value.

HasIntegrationId

func (o *Integration) HasIntegrationId() bool

HasIntegrationId returns a boolean if a field has been set.

GetType

func (o *Integration) GetType() IntegrationType

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *Integration) GetTypeOk() (*IntegrationType, bool)

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

SetType

func (o *Integration) SetType(v IntegrationType)

SetType sets Type field to given value.

HasType

func (o *Integration) HasType() bool

HasType returns a boolean if a field has been set.

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