update go docs and examples

This commit is contained in:
darrell-thobe-sp
2025-05-13 11:12:04 -04:00
parent 43fe2ffd30
commit d89039d220
580 changed files with 62492 additions and 25327 deletions

View File

@@ -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.