| Name | Type | Description | Notes |
|---|---|---|---|
| Id | string | The ID of the workflow | |
| Version | int32 | The version of the workflow | |
| Conflicts | []ConflictOutput | Any conflicts that are present in the workflow stages | |
| CreationDate | int64 | ||
| MaintainerId | string | The member ID of the maintainer of the workflow. Defaults to the workflow creator. | |
| Links | map[string]Link | The location and content type of related resources | |
| Name | string | The name of the workflow | |
| Description | Pointer to string | A brief description of the workflow | [optional] |
| Kind | Pointer to string | The kind of workflow | [optional] |
| Stages | Pointer to []StageOutput | The stages that make up the workflow. Each stage contains conditions and actions. | [optional] |
| Execution | ExecutionOutput | ||
| Meta | Pointer to WorkflowTemplateMetadata | [optional] | |
| TemplateKey | Pointer to string | For workflows being created from a workflow template, this value is the template's key | [optional] |
func NewCustomWorkflowOutput(id string, version int32, conflicts []ConflictOutput, creationDate int64, maintainerId string, links map[string]Link, name string, execution ExecutionOutput, ) *CustomWorkflowOutput
NewCustomWorkflowOutput instantiates a new CustomWorkflowOutput 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
func NewCustomWorkflowOutputWithDefaults() *CustomWorkflowOutput
NewCustomWorkflowOutputWithDefaults instantiates a new CustomWorkflowOutput 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
func (o *CustomWorkflowOutput) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) 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.
func (o *CustomWorkflowOutput) SetId(v string)
SetId sets Id field to given value.
func (o *CustomWorkflowOutput) GetVersion() int32
GetVersion returns the Version field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetVersionOk() (*int32, bool)
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetVersion(v int32)
SetVersion sets Version field to given value.
func (o *CustomWorkflowOutput) GetConflicts() []ConflictOutput
GetConflicts returns the Conflicts field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetConflictsOk() (*[]ConflictOutput, bool)
GetConflictsOk returns a tuple with the Conflicts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetConflicts(v []ConflictOutput)
SetConflicts sets Conflicts field to given value.
func (o *CustomWorkflowOutput) GetCreationDate() int64
GetCreationDate returns the CreationDate field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetCreationDateOk() (*int64, bool)
GetCreationDateOk returns a tuple with the CreationDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetCreationDate(v int64)
SetCreationDate sets CreationDate field to given value.
func (o *CustomWorkflowOutput) GetMaintainerId() string
GetMaintainerId returns the MaintainerId field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetMaintainerIdOk() (*string, bool)
GetMaintainerIdOk returns a tuple with the MaintainerId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetMaintainerId(v string)
SetMaintainerId sets MaintainerId field to given value.
func (o *CustomWorkflowOutput) GetLinks() map[string]Link
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetLinksOk() (*map[string]Link, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetLinks(v map[string]Link)
SetLinks sets Links field to given value.
func (o *CustomWorkflowOutput) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) 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.
func (o *CustomWorkflowOutput) SetName(v string)
SetName sets Name field to given value.
func (o *CustomWorkflowOutput) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) 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.
func (o *CustomWorkflowOutput) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *CustomWorkflowOutput) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *CustomWorkflowOutput) GetKind() string
GetKind returns the Kind field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetKindOk() (*string, bool)
GetKindOk returns a tuple with the Kind field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetKind(v string)
SetKind sets Kind field to given value.
func (o *CustomWorkflowOutput) HasKind() bool
HasKind returns a boolean if a field has been set.
func (o *CustomWorkflowOutput) GetStages() []StageOutput
GetStages returns the Stages field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetStagesOk() (*[]StageOutput, bool)
GetStagesOk returns a tuple with the Stages field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetStages(v []StageOutput)
SetStages sets Stages field to given value.
func (o *CustomWorkflowOutput) HasStages() bool
HasStages returns a boolean if a field has been set.
func (o *CustomWorkflowOutput) GetExecution() ExecutionOutput
GetExecution returns the Execution field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetExecutionOk() (*ExecutionOutput, bool)
GetExecutionOk returns a tuple with the Execution field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetExecution(v ExecutionOutput)
SetExecution sets Execution field to given value.
func (o *CustomWorkflowOutput) GetMeta() WorkflowTemplateMetadata
GetMeta returns the Meta field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetMetaOk() (*WorkflowTemplateMetadata, bool)
GetMetaOk returns a tuple with the Meta field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetMeta(v WorkflowTemplateMetadata)
SetMeta sets Meta field to given value.
func (o *CustomWorkflowOutput) HasMeta() bool
HasMeta returns a boolean if a field has been set.
func (o *CustomWorkflowOutput) GetTemplateKey() string
GetTemplateKey returns the TemplateKey field if non-nil, zero value otherwise.
func (o *CustomWorkflowOutput) GetTemplateKeyOk() (*string, bool)
GetTemplateKeyOk returns a tuple with the TemplateKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CustomWorkflowOutput) SetTemplateKey(v string)
SetTemplateKey sets TemplateKey field to given value.
func (o *CustomWorkflowOutput) HasTemplateKey() bool
HasTemplateKey returns a boolean if a field has been set.