mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
update go docs and examples
This commit is contained in:
@@ -18,8 +18,8 @@ Name | Type | Description | Notes
|
||||
**Id** | Pointer to **string** | The source app id | [optional]
|
||||
**CloudAppId** | Pointer to **string** | The deprecated source app id | [optional]
|
||||
**Name** | Pointer to **string** | The source app name | [optional]
|
||||
**Created** | Pointer to **time.Time** | Time when the source app was created | [optional]
|
||||
**Modified** | Pointer to **time.Time** | Time when the source app was last modified | [optional]
|
||||
**Created** | Pointer to **SailPointTime** | Time when the source app was created | [optional]
|
||||
**Modified** | Pointer to **SailPointTime** | Time when the source app was last modified | [optional]
|
||||
**Enabled** | Pointer to **bool** | True if the source app is enabled | [optional] [default to false]
|
||||
**ProvisionRequestEnabled** | Pointer to **bool** | True if the source app is provision request enabled | [optional] [default to false]
|
||||
**Description** | Pointer to **string** | The description of the source app | [optional]
|
||||
@@ -124,20 +124,20 @@ HasName returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *SourceApp) GetCreated() time.Time`
|
||||
`func (o *SourceApp) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *SourceApp) GetCreatedOk() (*time.Time, bool)`
|
||||
`func (o *SourceApp) 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 *SourceApp) SetCreated(v time.Time)`
|
||||
`func (o *SourceApp) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
@@ -149,20 +149,20 @@ HasCreated returns a boolean if a field has been set.
|
||||
|
||||
### GetModified
|
||||
|
||||
`func (o *SourceApp) GetModified() time.Time`
|
||||
`func (o *SourceApp) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *SourceApp) GetModifiedOk() (*time.Time, bool)`
|
||||
`func (o *SourceApp) 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 *SourceApp) SetModified(v time.Time)`
|
||||
`func (o *SourceApp) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user