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

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | Human-readable name of the SOD policy violation report result. | [optional]
**Status** | Pointer to **string** | Status of a SOD policy violation report. | [optional]
**ReportType** | [**ReportType**](report-type) | |
**LastRunAt** | Pointer to **time.Time** | The most recent date and time this report was run | [optional] [readonly]
**LastRunAt** | Pointer to **SailPointTime** | The most recent date and time this report was run | [optional] [readonly]
## Methods
@@ -163,20 +163,20 @@ SetReportType sets ReportType field to given value.
### GetLastRunAt
`func (o *CampaignReport) GetLastRunAt() time.Time`
`func (o *CampaignReport) GetLastRunAt() SailPointTime`
GetLastRunAt returns the LastRunAt field if non-nil, zero value otherwise.
### GetLastRunAtOk
`func (o *CampaignReport) GetLastRunAtOk() (*time.Time, bool)`
`func (o *CampaignReport) GetLastRunAtOk() (*SailPointTime, bool)`
GetLastRunAtOk returns a tuple with the LastRunAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastRunAt
`func (o *CampaignReport) SetLastRunAt(v time.Time)`
`func (o *CampaignReport) SetLastRunAt(v SailPointTime)`
SetLastRunAt sets LastRunAt field to given value.