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

@@ -16,7 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'RequestedItemStatusRequesterComment',
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comment** | Pointer to **NullableString** | Comment content. | [optional]
**Created** | Pointer to **time.Time** | Date and time comment was created. | [optional]
**Created** | Pointer to **SailPointTime** | Date and time comment was created. | [optional]
**Author** | Pointer to [**CommentDto1Author**](comment-dto1-author) | | [optional]
## Methods
@@ -75,20 +75,20 @@ HasComment returns a boolean if a field has been set.
UnsetComment ensures that no value is present for Comment, not even an explicit nil
### GetCreated
`func (o *RequestedItemStatusRequesterComment) GetCreated() time.Time`
`func (o *RequestedItemStatusRequesterComment) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *RequestedItemStatusRequesterComment) GetCreatedOk() (*time.Time, bool)`
`func (o *RequestedItemStatusRequesterComment) 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 *RequestedItemStatusRequesterComment) SetCreated(v time.Time)`
`func (o *RequestedItemStatusRequesterComment) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.