mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
update go docs and examples
This commit is contained in:
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
|
||||
**Forwarded** | Pointer to **bool** | True if the request for this item was forwarded from one owner to another. | [optional] [default to false]
|
||||
**OriginalOwner** | Pointer to [**NullableManualWorkItemDetailsOriginalOwner**](manual-work-item-details-original-owner) | | [optional]
|
||||
**CurrentOwner** | Pointer to [**NullableManualWorkItemDetailsCurrentOwner**](manual-work-item-details-current-owner) | | [optional]
|
||||
**Modified** | Pointer to **time.Time** | Time at which item was modified. | [optional]
|
||||
**Modified** | Pointer to **SailPointTime** | Time at which item was modified. | [optional]
|
||||
**Status** | Pointer to [**ManualWorkItemState**](manual-work-item-state) | | [optional]
|
||||
**ForwardHistory** | Pointer to [**[]ApprovalForwardHistory**](approval-forward-history) | The history of approval forward action. | [optional]
|
||||
|
||||
@@ -138,20 +138,20 @@ HasCurrentOwner returns a boolean if a field has been set.
|
||||
UnsetCurrentOwner ensures that no value is present for CurrentOwner, not even an explicit nil
|
||||
### GetModified
|
||||
|
||||
`func (o *ManualWorkItemDetails) GetModified() time.Time`
|
||||
`func (o *ManualWorkItemDetails) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *ManualWorkItemDetails) GetModifiedOk() (*time.Time, bool)`
|
||||
`func (o *ManualWorkItemDetails) 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 *ManualWorkItemDetails) SetModified(v time.Time)`
|
||||
`func (o *ManualWorkItemDetails) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user