Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 3.08 KB

File metadata and controls

102 lines (57 loc) · 3.08 KB

WorkflowsSignalRequest

Properties

Name Type Description Notes
SignalKey Pointer to NullableString The signal key. This is expected to be in a format like "STEP_NAME.SIGNAL_NAME" [optional]
Data Pointer to map[string]interface{} Arbitrary data to associate with the signal. [optional]

Methods

NewWorkflowsSignalRequest

func NewWorkflowsSignalRequest() *WorkflowsSignalRequest

NewWorkflowsSignalRequest instantiates a new WorkflowsSignalRequest 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

NewWorkflowsSignalRequestWithDefaults

func NewWorkflowsSignalRequestWithDefaults() *WorkflowsSignalRequest

NewWorkflowsSignalRequestWithDefaults instantiates a new WorkflowsSignalRequest 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

GetSignalKey

func (o *WorkflowsSignalRequest) GetSignalKey() string

GetSignalKey returns the SignalKey field if non-nil, zero value otherwise.

GetSignalKeyOk

func (o *WorkflowsSignalRequest) GetSignalKeyOk() (*string, bool)

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

SetSignalKey

func (o *WorkflowsSignalRequest) SetSignalKey(v string)

SetSignalKey sets SignalKey field to given value.

HasSignalKey

func (o *WorkflowsSignalRequest) HasSignalKey() bool

HasSignalKey returns a boolean if a field has been set.

SetSignalKeyNil

func (o *WorkflowsSignalRequest) SetSignalKeyNil(b bool)

SetSignalKeyNil sets the value for SignalKey to be an explicit nil

UnsetSignalKey

func (o *WorkflowsSignalRequest) UnsetSignalKey()

UnsetSignalKey ensures that no value is present for SignalKey, not even an explicit nil

GetData

func (o *WorkflowsSignalRequest) GetData() map[string]interface{}

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *WorkflowsSignalRequest) GetDataOk() (*map[string]interface{}, bool)

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

SetData

func (o *WorkflowsSignalRequest) SetData(v map[string]interface{})

SetData sets Data field to given value.

HasData

func (o *WorkflowsSignalRequest) HasData() bool

HasData returns a boolean if a field has been set.

SetDataNil

func (o *WorkflowsSignalRequest) SetDataNil(b bool)

SetDataNil sets the value for Data to be an explicit nil

UnsetData

func (o *WorkflowsSignalRequest) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

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