mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
update go docs and examples
This commit is contained in:
@@ -18,14 +18,14 @@ Name | Type | Description | Notes
|
||||
**Id** | Pointer to **string** | Id of the campaign | [optional] [readonly]
|
||||
**Name** | **string** | The campaign name. If this object is part of a template, special formatting applies; see the `/campaign-templates/{id}/generate` endpoint documentation for details. |
|
||||
**Description** | **string** | The campaign description. If this object is part of a template, special formatting applies; see the `/campaign-templates/{id}/generate` endpoint documentation for details. |
|
||||
**Deadline** | Pointer to **time.Time** | The campaign's completion deadline. This date must be in the future in order to activate the campaign. If you try to activate a campaign with a deadline of today or in the past, you will receive a 400 error response. | [optional]
|
||||
**Deadline** | Pointer to **SailPointTime** | The campaign's completion deadline. This date must be in the future in order to activate the campaign. If you try to activate a campaign with a deadline of today or in the past, you will receive a 400 error response. | [optional]
|
||||
**Type** | **string** | The type of campaign. Could be extended in the future. |
|
||||
**EmailNotificationEnabled** | Pointer to **bool** | Enables email notification for this campaign | [optional] [default to false]
|
||||
**AutoRevokeAllowed** | Pointer to **bool** | Allows auto revoke for this campaign | [optional] [default to false]
|
||||
**RecommendationsEnabled** | Pointer to **bool** | Enables IAI for this campaign. Accepts true even if the IAI product feature is off. If IAI is turned off then campaigns generated from this template will indicate false. The real value will then be returned if IAI is ever enabled for the org in the future. | [optional] [default to false]
|
||||
**Status** | Pointer to **string** | The campaign's current status. | [optional] [readonly]
|
||||
**CorrelatedStatus** | Pointer to **string** | The correlatedStatus of the campaign. Only SOURCE_OWNER campaigns can be Uncorrelated. An Uncorrelated certification campaign only includes Uncorrelated identities (An identity is uncorrelated if it has no accounts on an authoritative source). | [optional]
|
||||
**Created** | Pointer to **time.Time** | Created time of the campaign | [optional] [readonly]
|
||||
**Created** | Pointer to **SailPointTime** | Created time of the campaign | [optional] [readonly]
|
||||
**TotalCertifications** | Pointer to **int32** | The total number of certifications in this campaign. | [optional] [readonly]
|
||||
**CompletedCertifications** | Pointer to **int32** | The number of completed certifications in this campaign. | [optional] [readonly]
|
||||
**Alerts** | Pointer to [**[]CampaignAlert**](campaign-alert) | A list of errors and warnings that have accumulated. | [optional] [readonly]
|
||||
@@ -116,20 +116,20 @@ SetDescription sets Description field to given value.
|
||||
|
||||
### GetDeadline
|
||||
|
||||
`func (o *Slimcampaign) GetDeadline() time.Time`
|
||||
`func (o *Slimcampaign) GetDeadline() SailPointTime`
|
||||
|
||||
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDeadlineOk
|
||||
|
||||
`func (o *Slimcampaign) GetDeadlineOk() (*time.Time, bool)`
|
||||
`func (o *Slimcampaign) GetDeadlineOk() (*SailPointTime, bool)`
|
||||
|
||||
GetDeadlineOk returns a tuple with the Deadline field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDeadline
|
||||
|
||||
`func (o *Slimcampaign) SetDeadline(v time.Time)`
|
||||
`func (o *Slimcampaign) SetDeadline(v SailPointTime)`
|
||||
|
||||
SetDeadline sets Deadline field to given value.
|
||||
|
||||
@@ -286,20 +286,20 @@ HasCorrelatedStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *Slimcampaign) GetCreated() time.Time`
|
||||
`func (o *Slimcampaign) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *Slimcampaign) GetCreatedOk() (*time.Time, bool)`
|
||||
`func (o *Slimcampaign) 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 *Slimcampaign) SetCreated(v time.Time)`
|
||||
`func (o *Slimcampaign) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user