mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
update go docs and examples
This commit is contained in:
@@ -22,11 +22,11 @@ Name | Type | Description | Notes
|
||||
**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**](workflow-trigger) | | [optional]
|
||||
**Id** | Pointer to **string** | Workflow ID. This is a UUID generated upon creation. | [optional]
|
||||
**Modified** | Pointer to **time.Time** | The date and time the workflow was modified. | [optional]
|
||||
**Modified** | Pointer to **SailPointTime** | The date and time the workflow was modified. | [optional]
|
||||
**ModifiedBy** | Pointer to [**WorkflowModifiedBy**](workflow-modified-by) | | [optional]
|
||||
**ExecutionCount** | Pointer to **int32** | The number of times this workflow has been executed. | [optional]
|
||||
**FailureCount** | Pointer to **int32** | The number of times this workflow has failed during execution. | [optional]
|
||||
**Created** | Pointer to **time.Time** | The date and time the workflow was created. | [optional]
|
||||
**Created** | Pointer to **SailPointTime** | The date and time the workflow was created. | [optional]
|
||||
**Creator** | Pointer to [**WorkflowAllOfCreator**](workflow-all-of-creator) | | [optional]
|
||||
|
||||
## Methods
|
||||
@@ -225,20 +225,20 @@ HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetModified
|
||||
|
||||
`func (o *Workflow) GetModified() time.Time`
|
||||
`func (o *Workflow) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *Workflow) GetModifiedOk() (*time.Time, bool)`
|
||||
`func (o *Workflow) GetModifiedOk() (*SailPointTime, bool)`
|
||||
|
||||
GetModifiedOk returns a tuple with the Modified field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetModified
|
||||
|
||||
`func (o *Workflow) SetModified(v time.Time)`
|
||||
`func (o *Workflow) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
@@ -325,20 +325,20 @@ HasFailureCount returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *Workflow) GetCreated() time.Time`
|
||||
`func (o *Workflow) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *Workflow) GetCreatedOk() (*time.Time, bool)`
|
||||
`func (o *Workflow) GetCreatedOk() (*SailPointTime, bool)`
|
||||
|
||||
GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCreated
|
||||
|
||||
`func (o *Workflow) SetCreated(v time.Time)`
|
||||
`func (o *Workflow) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user