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** | The segment's ID. | [optional]
**Name** | Pointer to **string** | The segment's business name. | [optional]
**Created** | Pointer to **time.Time** | The time when the segment is created. | [optional]
**Modified** | Pointer to **time.Time** | The time when the segment is modified. | [optional]
**Created** | Pointer to **SailPointTime** | The time when the segment is created. | [optional]
**Modified** | Pointer to **SailPointTime** | The time when the segment is modified. | [optional]
**Description** | Pointer to **string** | The segment's optional description. | [optional]
**Owner** | Pointer to [**NullableOwnerReferenceSegments**](owner-reference-segments) | | [optional]
**VisibilityCriteria** | Pointer to [**NullableVisibilityCriteria**](visibility-criteria) | | [optional]
@@ -95,20 +95,20 @@ HasName returns a boolean if a field has been set.
### GetCreated
`func (o *Segment) GetCreated() time.Time`
`func (o *Segment) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Segment) GetCreatedOk() (*time.Time, bool)`
`func (o *Segment) 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 *Segment) SetCreated(v time.Time)`
`func (o *Segment) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -120,20 +120,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *Segment) GetModified() time.Time`
`func (o *Segment) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Segment) GetModifiedOk() (*time.Time, bool)`
`func (o *Segment) 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 *Segment) SetModified(v time.Time)`
`func (o *Segment) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.