mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-11 04:19:42 +00:00
update go docs and examples
This commit is contained in:
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **string** | ID of the account activity itself | [optional]
|
||||
**Name** | Pointer to **string** | | [optional]
|
||||
**Created** | Pointer to **time.Time** | | [optional]
|
||||
**Created** | Pointer to **SailPointTime** | | [optional]
|
||||
**Modified** | Pointer to **NullableTime** | | [optional]
|
||||
**Completed** | Pointer to **NullableTime** | | [optional]
|
||||
**CompletionStatus** | Pointer to [**NullableCompletionStatus**](completion-status) | | [optional]
|
||||
@@ -103,20 +103,20 @@ HasName returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *CancelableAccountActivity) GetCreated() time.Time`
|
||||
`func (o *CancelableAccountActivity) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *CancelableAccountActivity) GetCreatedOk() (*time.Time, bool)`
|
||||
`func (o *CancelableAccountActivity) 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 *CancelableAccountActivity) SetCreated(v time.Time)`
|
||||
`func (o *CancelableAccountActivity) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
@@ -128,20 +128,20 @@ HasCreated returns a boolean if a field has been set.
|
||||
|
||||
### GetModified
|
||||
|
||||
`func (o *CancelableAccountActivity) GetModified() time.Time`
|
||||
`func (o *CancelableAccountActivity) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *CancelableAccountActivity) GetModifiedOk() (*time.Time, bool)`
|
||||
`func (o *CancelableAccountActivity) 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 *CancelableAccountActivity) SetModified(v time.Time)`
|
||||
`func (o *CancelableAccountActivity) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
@@ -163,20 +163,20 @@ HasModified returns a boolean if a field has been set.
|
||||
UnsetModified ensures that no value is present for Modified, not even an explicit nil
|
||||
### GetCompleted
|
||||
|
||||
`func (o *CancelableAccountActivity) GetCompleted() time.Time`
|
||||
`func (o *CancelableAccountActivity) GetCompleted() SailPointTime`
|
||||
|
||||
GetCompleted returns the Completed field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCompletedOk
|
||||
|
||||
`func (o *CancelableAccountActivity) GetCompletedOk() (*time.Time, bool)`
|
||||
`func (o *CancelableAccountActivity) GetCompletedOk() (*SailPointTime, bool)`
|
||||
|
||||
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCompleted
|
||||
|
||||
`func (o *CancelableAccountActivity) SetCompleted(v time.Time)`
|
||||
`func (o *CancelableAccountActivity) SetCompleted(v SailPointTime)`
|
||||
|
||||
SetCompleted sets Completed field to given value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user