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

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
**Description** | Pointer to **string** | The description of the integration | [optional]
**Type** | Pointer to **string** | The integration type | [optional]
**Attributes** | Pointer to **map[string]interface{}** | The attributes map containing the credentials used to configure the integration. | [optional]
@@ -104,20 +104,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *SimIntegrationDetails) GetCreated() time.Time`
`func (o *SimIntegrationDetails) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *SimIntegrationDetails) GetCreatedOk() (*time.Time, bool)`
`func (o *SimIntegrationDetails) 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 *SimIntegrationDetails) SetCreated(v time.Time)`
`func (o *SimIntegrationDetails) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -129,20 +129,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *SimIntegrationDetails) GetModified() time.Time`
`func (o *SimIntegrationDetails) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *SimIntegrationDetails) GetModifiedOk() (*time.Time, bool)`
`func (o *SimIntegrationDetails) 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 *SimIntegrationDetails) SetModified(v time.Time)`
`func (o *SimIntegrationDetails) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.