Skip to content

Latest commit

 

History

History
398 lines (217 loc) · 9.88 KB

WorkflowEvent.md

File metadata and controls

398 lines (217 loc) · 9.88 KB

WorkflowEvent

Properties

Name Type Description Notes
Id Pointer to string [optional]
Name Pointer to string [optional]
Title Pointer to string [optional]
Type Pointer to string [optional]
BaseType Pointer to string [optional]
SchemaId Pointer to string [optional]
Properties Pointer to map[string]interface{} [optional]
CreatedOn Pointer to string [optional]
CreatedBy Pointer to string [optional]
UpdatedOn Pointer to string [optional]
UpdatedBy Pointer to NullableString [optional]
Owner Pointer to NullableString [optional]
UniqueName Pointer to NullableString [optional]

Methods

NewWorkflowEvent

func NewWorkflowEvent() *WorkflowEvent

NewWorkflowEvent instantiates a new WorkflowEvent 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

NewWorkflowEventWithDefaults

func NewWorkflowEventWithDefaults() *WorkflowEvent

NewWorkflowEventWithDefaults instantiates a new WorkflowEvent 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

GetId

func (o *WorkflowEvent) GetId() string

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

GetIdOk

func (o *WorkflowEvent) GetIdOk() (*string, 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 *WorkflowEvent) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *WorkflowEvent) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *WorkflowEvent) GetName() string

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

GetNameOk

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

SetName

func (o *WorkflowEvent) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *WorkflowEvent) HasName() bool

HasName returns a boolean if a field has been set.

GetTitle

func (o *WorkflowEvent) GetTitle() string

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

GetTitleOk

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

SetTitle

func (o *WorkflowEvent) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *WorkflowEvent) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetType

func (o *WorkflowEvent) GetType() string

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

GetTypeOk

func (o *WorkflowEvent) GetTypeOk() (*string, 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 *WorkflowEvent) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *WorkflowEvent) HasType() bool

HasType returns a boolean if a field has been set.

GetBaseType

func (o *WorkflowEvent) GetBaseType() string

GetBaseType returns the BaseType field if non-nil, zero value otherwise.

GetBaseTypeOk

func (o *WorkflowEvent) GetBaseTypeOk() (*string, bool)

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

SetBaseType

func (o *WorkflowEvent) SetBaseType(v string)

SetBaseType sets BaseType field to given value.

HasBaseType

func (o *WorkflowEvent) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

GetSchemaId

func (o *WorkflowEvent) GetSchemaId() string

GetSchemaId returns the SchemaId field if non-nil, zero value otherwise.

GetSchemaIdOk

func (o *WorkflowEvent) GetSchemaIdOk() (*string, bool)

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

SetSchemaId

func (o *WorkflowEvent) SetSchemaId(v string)

SetSchemaId sets SchemaId field to given value.

HasSchemaId

func (o *WorkflowEvent) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

GetProperties

func (o *WorkflowEvent) GetProperties() map[string]interface{}

GetProperties returns the Properties field if non-nil, zero value otherwise.

GetPropertiesOk

func (o *WorkflowEvent) GetPropertiesOk() (*map[string]interface{}, bool)

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

SetProperties

func (o *WorkflowEvent) SetProperties(v map[string]interface{})

SetProperties sets Properties field to given value.

HasProperties

func (o *WorkflowEvent) HasProperties() bool

HasProperties returns a boolean if a field has been set.

GetCreatedOn

func (o *WorkflowEvent) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field if non-nil, zero value otherwise.

GetCreatedOnOk

func (o *WorkflowEvent) GetCreatedOnOk() (*string, bool)

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

SetCreatedOn

func (o *WorkflowEvent) SetCreatedOn(v string)

SetCreatedOn sets CreatedOn field to given value.

HasCreatedOn

func (o *WorkflowEvent) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

GetCreatedBy

func (o *WorkflowEvent) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.

GetCreatedByOk

func (o *WorkflowEvent) GetCreatedByOk() (*string, bool)

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

SetCreatedBy

func (o *WorkflowEvent) SetCreatedBy(v string)

SetCreatedBy sets CreatedBy field to given value.

HasCreatedBy

func (o *WorkflowEvent) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

GetUpdatedOn

func (o *WorkflowEvent) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field if non-nil, zero value otherwise.

GetUpdatedOnOk

func (o *WorkflowEvent) GetUpdatedOnOk() (*string, bool)

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

SetUpdatedOn

func (o *WorkflowEvent) SetUpdatedOn(v string)

SetUpdatedOn sets UpdatedOn field to given value.

HasUpdatedOn

func (o *WorkflowEvent) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

GetUpdatedBy

func (o *WorkflowEvent) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field if non-nil, zero value otherwise.

GetUpdatedByOk

func (o *WorkflowEvent) GetUpdatedByOk() (*string, bool)

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

SetUpdatedBy

func (o *WorkflowEvent) SetUpdatedBy(v string)

SetUpdatedBy sets UpdatedBy field to given value.

HasUpdatedBy

func (o *WorkflowEvent) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

SetUpdatedByNil

func (o *WorkflowEvent) SetUpdatedByNil(b bool)

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

UnsetUpdatedBy

func (o *WorkflowEvent) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

GetOwner

func (o *WorkflowEvent) GetOwner() string

GetOwner returns the Owner field if non-nil, zero value otherwise.

GetOwnerOk

func (o *WorkflowEvent) GetOwnerOk() (*string, bool)

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

SetOwner

func (o *WorkflowEvent) SetOwner(v string)

SetOwner sets Owner field to given value.

HasOwner

func (o *WorkflowEvent) HasOwner() bool

HasOwner returns a boolean if a field has been set.

SetOwnerNil

func (o *WorkflowEvent) SetOwnerNil(b bool)

SetOwnerNil sets the value for Owner to be an explicit nil

UnsetOwner

func (o *WorkflowEvent) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

GetUniqueName

func (o *WorkflowEvent) GetUniqueName() string

GetUniqueName returns the UniqueName field if non-nil, zero value otherwise.

GetUniqueNameOk

func (o *WorkflowEvent) GetUniqueNameOk() (*string, bool)

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

SetUniqueName

func (o *WorkflowEvent) SetUniqueName(v string)

SetUniqueName sets UniqueName field to given value.

HasUniqueName

func (o *WorkflowEvent) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

SetUniqueNameNil

func (o *WorkflowEvent) SetUniqueNameNil(b bool)

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

UnsetUniqueName

func (o *WorkflowEvent) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

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