Name | Type | Description | Notes |
---|---|---|---|
Name | Pointer to string | The name of the workflow | [optional] |
Owner | Pointer to WorkflowBodyOwner | [optional] | |
Description | Pointer to string | Description of what the workflow accomplishes | [optional] |
Definition | Pointer to WorkflowDefinition | [optional] | |
Enabled | Pointer to bool | Enable or disable the workflow. Workflows cannot be created in an enabled state. | [optional] [default to false] |
Trigger | Pointer to WorkflowTrigger | [optional] |
func NewWorkflowBody() *WorkflowBody
NewWorkflowBody instantiates a new WorkflowBody 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 NewWorkflowBodyWithDefaults() *WorkflowBody
NewWorkflowBodyWithDefaults instantiates a new WorkflowBody 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 *WorkflowBody) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *WorkflowBody) 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 *WorkflowBody) SetName(v string)
SetName sets Name field to given value.
func (o *WorkflowBody) HasName() bool
HasName returns a boolean if a field has been set.
func (o *WorkflowBody) GetOwner() WorkflowBodyOwner
GetOwner returns the Owner field if non-nil, zero value otherwise.
func (o *WorkflowBody) GetOwnerOk() (*WorkflowBodyOwner, 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.
func (o *WorkflowBody) SetOwner(v WorkflowBodyOwner)
SetOwner sets Owner field to given value.
func (o *WorkflowBody) HasOwner() bool
HasOwner returns a boolean if a field has been set.
func (o *WorkflowBody) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *WorkflowBody) 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 *WorkflowBody) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *WorkflowBody) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *WorkflowBody) GetDefinition() WorkflowDefinition
GetDefinition returns the Definition field if non-nil, zero value otherwise.
func (o *WorkflowBody) GetDefinitionOk() (*WorkflowDefinition, bool)
GetDefinitionOk returns a tuple with the Definition field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WorkflowBody) SetDefinition(v WorkflowDefinition)
SetDefinition sets Definition field to given value.
func (o *WorkflowBody) HasDefinition() bool
HasDefinition returns a boolean if a field has been set.
func (o *WorkflowBody) GetEnabled() bool
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
func (o *WorkflowBody) GetEnabledOk() (*bool, bool)
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WorkflowBody) SetEnabled(v bool)
SetEnabled sets Enabled field to given value.
func (o *WorkflowBody) HasEnabled() bool
HasEnabled returns a boolean if a field has been set.
func (o *WorkflowBody) GetTrigger() WorkflowTrigger
GetTrigger returns the Trigger field if non-nil, zero value otherwise.
func (o *WorkflowBody) GetTriggerOk() (*WorkflowTrigger, bool)
GetTriggerOk returns a tuple with the Trigger field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WorkflowBody) SetTrigger(v WorkflowTrigger)
SetTrigger sets Trigger field to given value.
func (o *WorkflowBody) HasTrigger() bool
HasTrigger returns a boolean if a field has been set.