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

@@ -27,11 +27,11 @@ Name | Type | Description | Notes
**Data** | Pointer to **map[string]string** | Additional attributes for a non-employee. Up to 10 custom attributes can be added. | [optional]
**ApprovalStatus** | Pointer to [**ApprovalStatus**](approval-status) | | [optional]
**Comment** | Pointer to **string** | Comment of requester | [optional]
**CompletionDate** | Pointer to **time.Time** | When the request was completely approved. | [optional]
**CompletionDate** | Pointer to **SailPointTime** | When the request was completely approved. | [optional]
**StartDate** | Pointer to **string** | Non-Employee employment start date. | [optional]
**EndDate** | Pointer to **string** | Non-Employee employment end date. | [optional]
**Modified** | Pointer to **time.Time** | When the request was last modified. | [optional]
**Created** | Pointer to **time.Time** | When the request was created. | [optional]
**Modified** | Pointer to **SailPointTime** | When the request was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | When the request was created. | [optional]
## Methods
@@ -354,20 +354,20 @@ HasComment returns a boolean if a field has been set.
### GetCompletionDate
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCompletionDate() time.Time`
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCompletionDate() SailPointTime`
GetCompletionDate returns the CompletionDate field if non-nil, zero value otherwise.
### GetCompletionDateOk
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCompletionDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCompletionDateOk() (*SailPointTime, bool)`
GetCompletionDateOk returns a tuple with the CompletionDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompletionDate
`func (o *NonEmployeeRequestWithoutApprovalItem) SetCompletionDate(v time.Time)`
`func (o *NonEmployeeRequestWithoutApprovalItem) SetCompletionDate(v SailPointTime)`
SetCompletionDate sets CompletionDate field to given value.
@@ -429,20 +429,20 @@ HasEndDate returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeRequestWithoutApprovalItem) GetModified() time.Time`
`func (o *NonEmployeeRequestWithoutApprovalItem) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeRequestWithoutApprovalItem) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeRequestWithoutApprovalItem) 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 *NonEmployeeRequestWithoutApprovalItem) SetModified(v time.Time)`
`func (o *NonEmployeeRequestWithoutApprovalItem) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -454,20 +454,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCreated() time.Time`
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeRequestWithoutApprovalItem) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeRequestWithoutApprovalItem) 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 *NonEmployeeRequestWithoutApprovalItem) SetCreated(v time.Time)`
`func (o *NonEmployeeRequestWithoutApprovalItem) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.