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

@@ -15,19 +15,19 @@ tags: ['SDK', 'Software Development Kit', 'AccessProfile', 'BetaAccessProfile']
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The ID of the Access Profile | [optional] [readonly]
**Name** | **string** | Name of the Access Profile |
**Description** | Pointer to **NullableString** | Information about the Access Profile | [optional]
**Created** | Pointer to **time.Time** | Date the Access Profile was created | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Date the Access Profile was last modified. | [optional] [readonly]
**Enabled** | Pointer to **bool** | Whether the Access Profile is enabled. If the Access Profile is enabled then you must include at least one Entitlement. | [optional] [default to false]
**Id** | Pointer to **string** | Access profile ID. | [optional] [readonly]
**Name** | **string** | Access profile name. |
**Description** | Pointer to **NullableString** | Access profile description. | [optional]
**Created** | Pointer to **SailPointTime** | Date and time when the access profile was created. | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Date and time when the access profile was last modified. | [optional] [readonly]
**Enabled** | Pointer to **bool** | Indicates whether the access profile is enabled. If it's enabled, you must include at least one entitlement. | [optional] [default to false]
**Owner** | [**OwnerReference**](owner-reference) | |
**Source** | [**AccessProfileSourceRef**](access-profile-source-ref) | |
**Entitlements** | Pointer to [**[]EntitlementRef**](entitlement-ref) | A list of entitlements associated with the Access Profile. If enabled is false this is allowed to be empty otherwise it needs to contain at least one Entitlement. | [optional]
**Requestable** | Pointer to **bool** | Whether the Access Profile is requestable via access request. Currently, making an Access Profile non-requestable is only supported for customers enabled with the new Request Center. Otherwise, attempting to create an Access Profile with a value **false** in this field results in a 400 error. | [optional] [default to true]
**Entitlements** | Pointer to [**[]EntitlementRef**](entitlement-ref) | List of entitlements associated with the access profile. If `enabled` is false, this can be empty. Otherwise, it must contain at least one entitlement. | [optional]
**Requestable** | Pointer to **bool** | Indicates whether the access profile is requestable by access request. Currently, making an access profile non-requestable is only supported for customers enabled with the new Request Center. Otherwise, attempting to create an access profile with a value **false** in this field results in a 400 error. | [optional] [default to true]
**AccessRequestConfig** | Pointer to [**NullableRequestability**](requestability) | | [optional]
**RevocationRequestConfig** | Pointer to [**NullableRevocability**](revocability) | | [optional]
**Segments** | Pointer to **[]string** | List of IDs of segments, if any, to which this Access Profile is assigned. | [optional]
**Segments** | Pointer to **[]string** | List of segment IDs, if any, that the access profile is assigned to. | [optional]
**ProvisioningCriteria** | Pointer to [**NullableProvisioningCriteriaLevel1**](provisioning-criteria-level1) | | [optional]
## Methods
@@ -131,20 +131,20 @@ HasDescription returns a boolean if a field has been set.
UnsetDescription ensures that no value is present for Description, not even an explicit nil
### GetCreated
`func (o *AccessProfile) GetCreated() time.Time`
`func (o *AccessProfile) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *AccessProfile) GetCreatedOk() (*time.Time, bool)`
`func (o *AccessProfile) 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 *AccessProfile) SetCreated(v time.Time)`
`func (o *AccessProfile) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -156,20 +156,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *AccessProfile) GetModified() time.Time`
`func (o *AccessProfile) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *AccessProfile) GetModifiedOk() (*time.Time, bool)`
`func (o *AccessProfile) 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 *AccessProfile) SetModified(v time.Time)`
`func (o *AccessProfile) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -15,8 +15,8 @@ tags: ['SDK', 'Software Development Kit', 'AccessProfileApprovalScheme', 'BetaAc
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ApproverType** | Pointer to **string** | Describes the individual or group that is responsible for an approval step. Values are as follows. **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field | [optional]
**ApproverId** | Pointer to **NullableString** | Id of the specific approver, used only when approverType is GOVERNANCE_GROUP | [optional]
**ApproverType** | Pointer to **string** | Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field | [optional]
**ApproverId** | Pointer to **NullableString** | Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`. | [optional]
## Methods

View File

@@ -18,8 +18,8 @@ Name | Type | Description | Notes
**Id** | Pointer to **string** | The ID of the Access Profile | [optional]
**Name** | Pointer to **string** | Name of the Access Profile | [optional]
**Description** | Pointer to **NullableString** | Information about the Access Profile | [optional]
**Created** | Pointer to **time.Time** | Date the Access Profile was created | [optional]
**Modified** | Pointer to **time.Time** | Date the Access Profile was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | Date the Access Profile was created | [optional]
**Modified** | Pointer to **SailPointTime** | Date the Access Profile was last modified. | [optional]
**Disabled** | Pointer to **bool** | Whether the Access Profile is enabled. | [optional] [default to true]
**Requestable** | Pointer to **bool** | Whether the Access Profile is requestable via access request. | [optional] [default to false]
**Protected** | Pointer to **bool** | Whether the Access Profile is protected. | [optional] [default to false]
@@ -145,20 +145,20 @@ HasDescription returns a boolean if a field has been set.
UnsetDescription ensures that no value is present for Description, not even an explicit nil
### GetCreated
`func (o *AccessProfileDetails) GetCreated() time.Time`
`func (o *AccessProfileDetails) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *AccessProfileDetails) GetCreatedOk() (*time.Time, bool)`
`func (o *AccessProfileDetails) 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 *AccessProfileDetails) SetCreated(v time.Time)`
`func (o *AccessProfileDetails) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -170,20 +170,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *AccessProfileDetails) GetModified() time.Time`
`func (o *AccessProfileDetails) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *AccessProfileDetails) GetModifiedOk() (*time.Time, bool)`
`func (o *AccessProfileDetails) 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 *AccessProfileDetails) SetModified(v time.Time)`
`func (o *AccessProfileDetails) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -15,9 +15,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessProfileSourceRef', 'BetaAccessP
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The ID of the Source with with which the Access Profile is associated | [optional]
**Type** | Pointer to **string** | The type of the Source, will always be SOURCE | [optional]
**Name** | Pointer to **string** | The display name of the associated Source | [optional]
**Id** | Pointer to **string** | ID of the source the access profile is associated with. | [optional]
**Type** | Pointer to **string** | Source's DTO type. | [optional]
**Name** | Pointer to **string** | Source name. | [optional]
## Methods

View File

@@ -19,6 +19,7 @@ Name | Type | Description | Notes
**RequestType** | Pointer to [**NullableAccessRequestType**](access-request-type) | | [optional]
**RequestedItems** | [**[]AccessRequestItem**](access-request-item) | |
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities. | [optional]
**RequestedForWithRequestedItems** | Pointer to [**[]RequestedForDtoRef**](requested-for-dto-ref) | Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when 'requestedFor' and 'requestedItems' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request | [optional]
## Methods
@@ -139,4 +140,39 @@ SetClientMetadata sets ClientMetadata field to given value.
HasClientMetadata returns a boolean if a field has been set.
### GetRequestedForWithRequestedItems
`func (o *AccessRequest) GetRequestedForWithRequestedItems() []RequestedForDtoRef`
GetRequestedForWithRequestedItems returns the RequestedForWithRequestedItems field if non-nil, zero value otherwise.
### GetRequestedForWithRequestedItemsOk
`func (o *AccessRequest) GetRequestedForWithRequestedItemsOk() (*[]RequestedForDtoRef, bool)`
GetRequestedForWithRequestedItemsOk returns a tuple with the RequestedForWithRequestedItems field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRequestedForWithRequestedItems
`func (o *AccessRequest) SetRequestedForWithRequestedItems(v []RequestedForDtoRef)`
SetRequestedForWithRequestedItems sets RequestedForWithRequestedItems field to given value.
### HasRequestedForWithRequestedItems
`func (o *AccessRequest) HasRequestedForWithRequestedItems() bool`
HasRequestedForWithRequestedItems returns a boolean if a field has been set.
### SetRequestedForWithRequestedItemsNil
`func (o *AccessRequest) SetRequestedForWithRequestedItemsNil(b bool)`
SetRequestedForWithRequestedItemsNil sets the value for RequestedForWithRequestedItems to be an explicit nil
### UnsetRequestedForWithRequestedItems
`func (o *AccessRequest) UnsetRequestedForWithRequestedItems()`
UnsetRequestedForWithRequestedItems ensures that no value is present for RequestedForWithRequestedItems, not even an explicit nil

View File

@@ -19,7 +19,9 @@ Name | Type | Description | Notes
**Id** | **string** | ID of Role, Access Profile or Entitlement being requested. |
**Comment** | Pointer to **string** | Comment provided by requester. * Comment is required when the request is of type Revoke Access. | [optional]
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities and /access-request-status. | [optional]
**RemoveDate** | Pointer to **time.Time** | The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. You can change the expiration date for requests for yourself or direct reports, but you cannot remove an expiration date on an already approved item. If the access request has not been approved, you can cancel it and submit a new one without the expiration. If it has already been approved, then you have to revoke the access and then re-request without the expiration. | [optional]
**RemoveDate** | Pointer to **SailPointTime** | The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. You can change the expiration date for requests for yourself or direct reports, but you cannot remove an expiration date on an already approved item. If the access request has not been approved, you can cancel it and submit a new one without the expiration. If it has already been approved, then you have to revoke the access and then re-request without the expiration. | [optional]
**AssignmentId** | Pointer to **NullableString** | The assignmentId for a specific role assignment on the identity. This id is used to revoke that specific roleAssignment on that identity. * For use with REVOKE_ACCESS requests for roles for identities with multiple accounts on a single source. | [optional]
**NativeIdentity** | Pointer to **NullableString** | The 'distinguishedName' field for an account on the identity, also called nativeIdentity. This nativeIdentity is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source. | [optional]
## Methods
@@ -132,20 +134,20 @@ HasClientMetadata returns a boolean if a field has been set.
### GetRemoveDate
`func (o *AccessRequestItem) GetRemoveDate() time.Time`
`func (o *AccessRequestItem) GetRemoveDate() SailPointTime`
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
### GetRemoveDateOk
`func (o *AccessRequestItem) GetRemoveDateOk() (*time.Time, bool)`
`func (o *AccessRequestItem) GetRemoveDateOk() (*SailPointTime, bool)`
GetRemoveDateOk returns a tuple with the RemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRemoveDate
`func (o *AccessRequestItem) SetRemoveDate(v time.Time)`
`func (o *AccessRequestItem) SetRemoveDate(v SailPointTime)`
SetRemoveDate sets RemoveDate field to given value.
@@ -155,4 +157,74 @@ SetRemoveDate sets RemoveDate field to given value.
HasRemoveDate returns a boolean if a field has been set.
### GetAssignmentId
`func (o *AccessRequestItem) GetAssignmentId() string`
GetAssignmentId returns the AssignmentId field if non-nil, zero value otherwise.
### GetAssignmentIdOk
`func (o *AccessRequestItem) GetAssignmentIdOk() (*string, bool)`
GetAssignmentIdOk returns a tuple with the AssignmentId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAssignmentId
`func (o *AccessRequestItem) SetAssignmentId(v string)`
SetAssignmentId sets AssignmentId field to given value.
### HasAssignmentId
`func (o *AccessRequestItem) HasAssignmentId() bool`
HasAssignmentId returns a boolean if a field has been set.
### SetAssignmentIdNil
`func (o *AccessRequestItem) SetAssignmentIdNil(b bool)`
SetAssignmentIdNil sets the value for AssignmentId to be an explicit nil
### UnsetAssignmentId
`func (o *AccessRequestItem) UnsetAssignmentId()`
UnsetAssignmentId ensures that no value is present for AssignmentId, not even an explicit nil
### GetNativeIdentity
`func (o *AccessRequestItem) GetNativeIdentity() string`
GetNativeIdentity returns the NativeIdentity field if non-nil, zero value otherwise.
### GetNativeIdentityOk
`func (o *AccessRequestItem) GetNativeIdentityOk() (*string, bool)`
GetNativeIdentityOk returns a tuple with the NativeIdentity field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNativeIdentity
`func (o *AccessRequestItem) SetNativeIdentity(v string)`
SetNativeIdentity sets NativeIdentity field to given value.
### HasNativeIdentity
`func (o *AccessRequestItem) HasNativeIdentity() bool`
HasNativeIdentity returns a boolean if a field has been set.
### SetNativeIdentityNil
`func (o *AccessRequestItem) SetNativeIdentityNil(b bool)`
SetNativeIdentityNil sets the value for NativeIdentity to be an explicit nil
### UnsetNativeIdentity
`func (o *AccessRequestItem) UnsetNativeIdentity()`
UnsetNativeIdentity ensures that no value is present for NativeIdentity, not even an explicit nil

View File

@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'AccessRequestPhases', 'BetaAccessRequ
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Started** | Pointer to **time.Time** | The time that this phase started. | [optional]
**Started** | Pointer to **SailPointTime** | The time that this phase started. | [optional]
**Finished** | Pointer to **NullableTime** | The time that this phase finished. | [optional]
**Name** | Pointer to **string** | The name of this phase. | [optional]
**State** | Pointer to **string** | The state of this phase. | [optional]
@@ -43,20 +43,20 @@ but it doesn't guarantee that properties required by API are set
### GetStarted
`func (o *AccessRequestPhases) GetStarted() time.Time`
`func (o *AccessRequestPhases) GetStarted() SailPointTime`
GetStarted returns the Started field if non-nil, zero value otherwise.
### GetStartedOk
`func (o *AccessRequestPhases) GetStartedOk() (*time.Time, bool)`
`func (o *AccessRequestPhases) GetStartedOk() (*SailPointTime, bool)`
GetStartedOk returns a tuple with the Started field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStarted
`func (o *AccessRequestPhases) SetStarted(v time.Time)`
`func (o *AccessRequestPhases) SetStarted(v SailPointTime)`
SetStarted sets Started field to given value.
@@ -68,20 +68,20 @@ HasStarted returns a boolean if a field has been set.
### GetFinished
`func (o *AccessRequestPhases) GetFinished() time.Time`
`func (o *AccessRequestPhases) GetFinished() SailPointTime`
GetFinished returns the Finished field if non-nil, zero value otherwise.
### GetFinishedOk
`func (o *AccessRequestPhases) GetFinishedOk() (*time.Time, bool)`
`func (o *AccessRequestPhases) GetFinishedOk() (*SailPointTime, bool)`
GetFinishedOk returns a tuple with the Finished field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFinished
`func (o *AccessRequestPhases) SetFinished(v time.Time)`
`func (o *AccessRequestPhases) SetFinished(v SailPointTime)`
SetFinished sets Finished field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IdentityId** | Pointer to **string** | The identity ID taking the action. | [optional]
**Access** | Pointer to [**AccessRequestRecommendationItem**](access-request-recommendation-item) | | [optional]
**Timestamp** | Pointer to **time.Time** | | [optional]
**Timestamp** | Pointer to **SailPointTime** | | [optional]
## Methods
@@ -90,20 +90,20 @@ HasAccess returns a boolean if a field has been set.
### GetTimestamp
`func (o *AccessRequestRecommendationActionItemResponseDto) GetTimestamp() time.Time`
`func (o *AccessRequestRecommendationActionItemResponseDto) GetTimestamp() SailPointTime`
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
### GetTimestampOk
`func (o *AccessRequestRecommendationActionItemResponseDto) GetTimestampOk() (*time.Time, bool)`
`func (o *AccessRequestRecommendationActionItemResponseDto) GetTimestampOk() (*SailPointTime, bool)`
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTimestamp
`func (o *AccessRequestRecommendationActionItemResponseDto) SetTimestamp(v time.Time)`
`func (o *AccessRequestRecommendationActionItemResponseDto) SetTimestamp(v SailPointTime)`
SetTimestamp sets Timestamp field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
**SourceId** | **string** | The unique ID of the source this account belongs to |
**SourceName** | **NullableString** | The display name of the source this account belongs to |
**IdentityId** | Pointer to **string** | The unique ID of the identity this account is correlated to | [optional]
@@ -120,20 +120,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *Account) GetCreated() time.Time`
`func (o *Account) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Account) GetCreatedOk() (*time.Time, bool)`
`func (o *Account) 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 *Account) SetCreated(v time.Time)`
`func (o *Account) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -145,20 +145,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *Account) GetModified() time.Time`
`func (o *Account) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Account) GetModifiedOk() (*time.Time, bool)`
`func (o *Account) 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 *Account) SetModified(v time.Time)`
`func (o *Account) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | Item id | [optional]
**Name** | Pointer to **string** | Human-readable display name of item | [optional]
**Requested** | Pointer to **time.Time** | Date and time item was requested | [optional]
**Requested** | Pointer to **SailPointTime** | Date and time item was requested | [optional]
**ApprovalStatus** | Pointer to [**NullableAccountActivityApprovalStatus**](account-activity-approval-status) | | [optional]
**ProvisioningStatus** | Pointer to [**ProvisioningState**](provisioning-state) | | [optional]
**RequesterComment** | Pointer to [**NullableComment**](comment) | | [optional]
@@ -103,20 +103,20 @@ HasName returns a boolean if a field has been set.
### GetRequested
`func (o *AccountActivityItem) GetRequested() time.Time`
`func (o *AccountActivityItem) GetRequested() SailPointTime`
GetRequested returns the Requested field if non-nil, zero value otherwise.
### GetRequestedOk
`func (o *AccountActivityItem) GetRequestedOk() (*time.Time, bool)`
`func (o *AccountActivityItem) GetRequestedOk() (*SailPointTime, bool)`
GetRequestedOk returns a tuple with the Requested field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRequested
`func (o *AccountActivityItem) SetRequested(v time.Time)`
`func (o *AccountActivityItem) SetRequested(v SailPointTime)`
SetRequested sets Requested field to given value.
@@ -528,20 +528,20 @@ HasClientMetadata returns a boolean if a field has been set.
UnsetClientMetadata ensures that no value is present for ClientMetadata, not even an explicit nil
### GetRemoveDate
`func (o *AccountActivityItem) GetRemoveDate() time.Time`
`func (o *AccountActivityItem) GetRemoveDate() SailPointTime`
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
### GetRemoveDateOk
`func (o *AccountActivityItem) GetRemoveDateOk() (*time.Time, bool)`
`func (o *AccountActivityItem) GetRemoveDateOk() (*SailPointTime, bool)`
GetRemoveDateOk returns a tuple with the RemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRemoveDate
`func (o *AccountActivityItem) SetRemoveDate(v time.Time)`
`func (o *AccountActivityItem) SetRemoveDate(v SailPointTime)`
SetRemoveDate sets RemoveDate field to given value.

View File

@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'AccountAggregation', 'BetaAccountAggr
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Start** | Pointer to **time.Time** | When the aggregation started. | [optional]
**Start** | Pointer to **SailPointTime** | When the aggregation started. | [optional]
**Status** | Pointer to **string** | STARTED - Aggregation started, but source account iteration has not completed. ACCOUNTS_COLLECTED - Source account iteration completed, but all accounts have not yet been processed. COMPLETED - Aggregation completed (*possibly with errors*). CANCELLED - Aggregation cancelled by user. RETRIED - Aggregation retried because of connectivity issues with the Virtual Appliance. TERMINATED - Aggregation marked as failed after 3 tries after connectivity issues with the Virtual Appliance. | [optional]
**TotalAccounts** | Pointer to **int32** | The total number of *NEW, CHANGED and DELETED* accounts that need to be processed for this aggregation. This does not include accounts that were unchanged since the previous aggregation. This can be zero if there were no new, changed or deleted accounts since the previous aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.* | [optional]
**ProcessedAccounts** | Pointer to **int32** | The number of *NEW, CHANGED and DELETED* accounts that have been processed so far. This reflects the number of accounts that have been processed at the time of the API call, and may increase on subsequent API calls while the status is ACCOUNTS_COLLECTED. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.* | [optional]
@@ -41,20 +41,20 @@ but it doesn't guarantee that properties required by API are set
### GetStart
`func (o *AccountAggregation) GetStart() time.Time`
`func (o *AccountAggregation) GetStart() SailPointTime`
GetStart returns the Start field if non-nil, zero value otherwise.
### GetStartOk
`func (o *AccountAggregation) GetStartOk() (*time.Time, bool)`
`func (o *AccountAggregation) GetStartOk() (*SailPointTime, bool)`
GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStart
`func (o *AccountAggregation) SetStart(v time.Time)`
`func (o *AccountAggregation) SetStart(v SailPointTime)`
SetStart sets Start field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Source** | [**AccountAggregationCompletedSource**](account-aggregation-completed-source) | |
**Status** | **map[string]interface{}** | Aggregation's overall status. |
**Started** | **time.Time** | Date and time when the account aggregation started. |
**Completed** | **time.Time** | Date and time when the account aggregation finished. |
**Started** | **SailPointTime** | Date and time when the account aggregation started. |
**Completed** | **SailPointTime** | Date and time when the account aggregation finished. |
**Errors** | **[]string** | List of errors that occurred during the aggregation. |
**Warnings** | **[]string** | List of warnings that occurred during the aggregation. |
**Stats** | [**AccountAggregationCompletedStats**](account-aggregation-completed-stats) | |
@@ -27,7 +27,7 @@ Name | Type | Description | Notes
### NewAccountAggregationCompleted
`func NewAccountAggregationCompleted(source AccountAggregationCompletedSource, status map[string]interface{}, started time.Time, completed time.Time, errors []string, warnings []string, stats AccountAggregationCompletedStats, ) *AccountAggregationCompleted`
`func NewAccountAggregationCompleted(source AccountAggregationCompletedSource, status map[string]interface{}, started SailPointTime, completed SailPointTime, errors []string, warnings []string, stats AccountAggregationCompletedStats, ) *AccountAggregationCompleted`
NewAccountAggregationCompleted instantiates a new AccountAggregationCompleted object
This constructor will assign default values to properties that have it defined,
@@ -84,40 +84,40 @@ SetStatus sets Status field to given value.
### GetStarted
`func (o *AccountAggregationCompleted) GetStarted() time.Time`
`func (o *AccountAggregationCompleted) GetStarted() SailPointTime`
GetStarted returns the Started field if non-nil, zero value otherwise.
### GetStartedOk
`func (o *AccountAggregationCompleted) GetStartedOk() (*time.Time, bool)`
`func (o *AccountAggregationCompleted) GetStartedOk() (*SailPointTime, bool)`
GetStartedOk returns a tuple with the Started field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStarted
`func (o *AccountAggregationCompleted) SetStarted(v time.Time)`
`func (o *AccountAggregationCompleted) SetStarted(v SailPointTime)`
SetStarted sets Started field to given value.
### GetCompleted
`func (o *AccountAggregationCompleted) GetCompleted() time.Time`
`func (o *AccountAggregationCompleted) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *AccountAggregationCompleted) GetCompletedOk() (*time.Time, bool)`
`func (o *AccountAggregationCompleted) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *AccountAggregationCompleted) SetCompleted(v time.Time)`
`func (o *AccountAggregationCompleted) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'AccountAggregationStatus', 'BetaAccou
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Start** | Pointer to **time.Time** | When the aggregation started. | [optional]
**Start** | Pointer to **SailPointTime** | When the aggregation started. | [optional]
**Status** | Pointer to **string** | STARTED - Aggregation started, but source account iteration has not completed. ACCOUNTS_COLLECTED - Source account iteration completed, but all accounts have not yet been processed. COMPLETED - Aggregation completed (*possibly with errors*). CANCELLED - Aggregation cancelled by user. RETRIED - Aggregation retried because of connectivity issues with the Virtual Appliance. TERMINATED - Aggregation marked as failed after 3 tries after connectivity issues with the Virtual Appliance. | [optional]
**TotalAccounts** | Pointer to **int32** | The total number of *NEW, CHANGED and DELETED* accounts that need to be processed for this aggregation. This does not include accounts that were unchanged since the previous aggregation. This can be zero if there were no new, changed or deleted accounts since the previous aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.* | [optional]
**ProcessedAccounts** | Pointer to **int32** | The number of *NEW, CHANGED and DELETED* accounts that have been processed so far. This reflects the number of accounts that have been processed at the time of the API call, and may increase on subsequent API calls while the status is ACCOUNTS_COLLECTED. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.* | [optional]
@@ -41,20 +41,20 @@ but it doesn't guarantee that properties required by API are set
### GetStart
`func (o *AccountAggregationStatus) GetStart() time.Time`
`func (o *AccountAggregationStatus) GetStart() SailPointTime`
GetStart returns the Start field if non-nil, zero value otherwise.
### GetStartOk
`func (o *AccountAggregationStatus) GetStartOk() (*time.Time, bool)`
`func (o *AccountAggregationStatus) GetStartOk() (*SailPointTime, bool)`
GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStart
`func (o *AccountAggregationStatus) SetStart(v time.Time)`
`func (o *AccountAggregationStatus) SetStart(v SailPointTime)`
SetStart sets Start field to given value.

View File

@@ -0,0 +1,100 @@
---
id: beta-account-item-ref
title: AccountItemRef
pagination_label: AccountItemRef
sidebar_label: AccountItemRef
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'AccountItemRef', 'BetaAccountItemRef']
slug: /tools/sdk/go/beta/models/account-item-ref
tags: ['SDK', 'Software Development Kit', 'AccountItemRef', 'BetaAccountItemRef']
---
# AccountItemRef
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountUuid** | Pointer to **NullableString** | The uuid for the account, available under the 'objectguid' attribute | [optional]
**NativeIdentity** | Pointer to **string** | The 'distinguishedName' attribute for the account | [optional]
## Methods
### NewAccountItemRef
`func NewAccountItemRef() *AccountItemRef`
NewAccountItemRef instantiates a new AccountItemRef object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewAccountItemRefWithDefaults
`func NewAccountItemRefWithDefaults() *AccountItemRef`
NewAccountItemRefWithDefaults instantiates a new AccountItemRef object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetAccountUuid
`func (o *AccountItemRef) GetAccountUuid() string`
GetAccountUuid returns the AccountUuid field if non-nil, zero value otherwise.
### GetAccountUuidOk
`func (o *AccountItemRef) GetAccountUuidOk() (*string, bool)`
GetAccountUuidOk returns a tuple with the AccountUuid field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAccountUuid
`func (o *AccountItemRef) SetAccountUuid(v string)`
SetAccountUuid sets AccountUuid field to given value.
### HasAccountUuid
`func (o *AccountItemRef) HasAccountUuid() bool`
HasAccountUuid returns a boolean if a field has been set.
### SetAccountUuidNil
`func (o *AccountItemRef) SetAccountUuidNil(b bool)`
SetAccountUuidNil sets the value for AccountUuid to be an explicit nil
### UnsetAccountUuid
`func (o *AccountItemRef) UnsetAccountUuid()`
UnsetAccountUuid ensures that no value is present for AccountUuid, not even an explicit nil
### GetNativeIdentity
`func (o *AccountItemRef) GetNativeIdentity() string`
GetNativeIdentity returns the NativeIdentity field if non-nil, zero value otherwise.
### GetNativeIdentityOk
`func (o *AccountItemRef) GetNativeIdentityOk() (*string, bool)`
GetNativeIdentityOk returns a tuple with the NativeIdentity field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNativeIdentity
`func (o *AccountItemRef) SetNativeIdentity(v string)`
SetNativeIdentity sets NativeIdentity field to given value.
### HasNativeIdentity
`func (o *AccountItemRef) HasNativeIdentity() bool`
HasNativeIdentity returns a boolean if a field has been set.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Source** | [**AccountsCollectedForAggregationSource**](accounts-collected-for-aggregation-source) | |
**Status** | **map[string]interface{}** | The overall status of the collection. |
**Started** | **time.Time** | The date and time when the account collection started. |
**Completed** | **time.Time** | The date and time when the account collection finished. |
**Started** | **SailPointTime** | The date and time when the account collection started. |
**Completed** | **SailPointTime** | The date and time when the account collection finished. |
**Errors** | **[]string** | A list of errors that occurred during the collection. |
**Warnings** | **[]string** | A list of warnings that occurred during the collection. |
**Stats** | [**AccountsCollectedForAggregationStats**](accounts-collected-for-aggregation-stats) | |
@@ -27,7 +27,7 @@ Name | Type | Description | Notes
### NewAccountsCollectedForAggregation
`func NewAccountsCollectedForAggregation(source AccountsCollectedForAggregationSource, status map[string]interface{}, started time.Time, completed time.Time, errors []string, warnings []string, stats AccountsCollectedForAggregationStats, ) *AccountsCollectedForAggregation`
`func NewAccountsCollectedForAggregation(source AccountsCollectedForAggregationSource, status map[string]interface{}, started SailPointTime, completed SailPointTime, errors []string, warnings []string, stats AccountsCollectedForAggregationStats, ) *AccountsCollectedForAggregation`
NewAccountsCollectedForAggregation instantiates a new AccountsCollectedForAggregation object
This constructor will assign default values to properties that have it defined,
@@ -84,40 +84,40 @@ SetStatus sets Status field to given value.
### GetStarted
`func (o *AccountsCollectedForAggregation) GetStarted() time.Time`
`func (o *AccountsCollectedForAggregation) GetStarted() SailPointTime`
GetStarted returns the Started field if non-nil, zero value otherwise.
### GetStartedOk
`func (o *AccountsCollectedForAggregation) GetStartedOk() (*time.Time, bool)`
`func (o *AccountsCollectedForAggregation) GetStartedOk() (*SailPointTime, bool)`
GetStartedOk returns a tuple with the Started field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStarted
`func (o *AccountsCollectedForAggregation) SetStarted(v time.Time)`
`func (o *AccountsCollectedForAggregation) SetStarted(v SailPointTime)`
SetStarted sets Started field to given value.
### GetCompleted
`func (o *AccountsCollectedForAggregation) GetCompleted() time.Time`
`func (o *AccountsCollectedForAggregation) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *AccountsCollectedForAggregation) GetCompletedOk() (*time.Time, bool)`
`func (o *AccountsCollectedForAggregation) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *AccountsCollectedForAggregation) SetCompleted(v time.Time)`
`func (o *AccountsCollectedForAggregation) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**OldApproverName** | Pointer to **string** | Display name of approver from whom the approval was forwarded. | [optional]
**NewApproverName** | Pointer to **string** | Display name of approver to whom the approval was forwarded. | [optional]
**Comment** | Pointer to **NullableString** | Comment made while forwarding. | [optional]
**Modified** | Pointer to **time.Time** | Time at which approval was forwarded. | [optional]
**Modified** | Pointer to **SailPointTime** | Time at which approval was forwarded. | [optional]
**ForwarderName** | Pointer to **NullableString** | Display name of forwarder who forwarded the approval. | [optional]
**ReassignmentType** | Pointer to [**ReassignmentType**](reassignment-type) | | [optional]
@@ -128,20 +128,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
### GetModified
`func (o *ApprovalForwardHistory) GetModified() time.Time`
`func (o *ApprovalForwardHistory) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *ApprovalForwardHistory) GetModifiedOk() (*time.Time, bool)`
`func (o *ApprovalForwardHistory) 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 *ApprovalForwardHistory) SetModified(v time.Time)`
`func (o *ApprovalForwardHistory) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -157,20 +157,20 @@ HasCurrentOwner returns a boolean if a field has been set.
### GetModified
`func (o *ApprovalStatusDto) GetModified() time.Time`
`func (o *ApprovalStatusDto) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *ApprovalStatusDto) GetModifiedOk() (*time.Time, bool)`
`func (o *ApprovalStatusDto) 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 *ApprovalStatusDto) SetModified(v time.Time)`
`func (o *ApprovalStatusDto) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -312,20 +312,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
### GetRemoveDate
`func (o *ApprovalStatusDto) GetRemoveDate() time.Time`
`func (o *ApprovalStatusDto) GetRemoveDate() SailPointTime`
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
### GetRemoveDateOk
`func (o *ApprovalStatusDto) GetRemoveDateOk() (*time.Time, bool)`
`func (o *ApprovalStatusDto) GetRemoveDateOk() (*SailPointTime, bool)`
GetRemoveDateOk returns a tuple with the RemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRemoveDate
`func (o *ApprovalStatusDto) SetRemoveDate(v time.Time)`
`func (o *ApprovalStatusDto) SetRemoveDate(v SailPointTime)`
SetRemoveDate sets RemoveDate field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **string** | The name of the attribute. | [optional]
**Type** | Pointer to [**AttributeDefinitionType**](attribute-definition-type) | | [optional]
**Schema** | Pointer to [**AttributeDefinitionSchema**](attribute-definition-schema) | | [optional]
**Schema** | Pointer to [**NullableAttributeDefinitionSchema**](attribute-definition-schema) | | [optional]
**Description** | Pointer to **string** | A human-readable description of the attribute. | [optional]
**IsMulti** | Pointer to **bool** | Flag indicating whether or not the attribute is multi-valued. | [optional] [default to false]
**IsEntitlement** | Pointer to **bool** | Flag indicating whether or not the attribute is an entitlement. | [optional] [default to false]
@@ -117,6 +117,16 @@ SetSchema sets Schema field to given value.
HasSchema returns a boolean if a field has been set.
### SetSchemaNil
`func (o *AttributeDefinition) SetSchemaNil(b bool)`
SetSchemaNil sets the value for Schema to be an explicit nil
### UnsetSchema
`func (o *AttributeDefinition) UnsetSchema()`
UnsetSchema ensures that no value is present for Schema, not even an explicit nil
### GetDescription
`func (o *AttributeDefinition) GetDescription() string`

View File

@@ -22,4 +22,6 @@ tags: ['SDK', 'Software Development Kit', 'AttributeDefinitionType', 'BetaAttrib
* `BOOLEAN` (value: `"BOOLEAN"`)
* `DATE` (value: `"DATE"`)

View File

@@ -15,9 +15,9 @@ tags: ['SDK', 'Software Development Kit', 'AuditDetails', 'BetaAuditDetails']
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Created** | Pointer to **time.Time** | Initial date and time when the record was created | [optional]
**Created** | Pointer to **SailPointTime** | Initial date and time when the record was created | [optional]
**CreatedBy** | Pointer to [**Identity1**](identity1) | | [optional]
**Modified** | Pointer to **time.Time** | Last modified date and time for the record | [optional]
**Modified** | Pointer to **SailPointTime** | Last modified date and time for the record | [optional]
**ModifiedBy** | Pointer to [**Identity1**](identity1) | | [optional]
## Methods
@@ -41,20 +41,20 @@ but it doesn't guarantee that properties required by API are set
### GetCreated
`func (o *AuditDetails) GetCreated() time.Time`
`func (o *AuditDetails) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *AuditDetails) GetCreatedOk() (*time.Time, bool)`
`func (o *AuditDetails) 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 *AuditDetails) SetCreated(v time.Time)`
`func (o *AuditDetails) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -91,20 +91,20 @@ HasCreatedBy returns a boolean if a field has been set.
### GetModified
`func (o *AuditDetails) GetModified() time.Time`
`func (o *AuditDetails) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *AuditDetails) GetModifiedOk() (*time.Time, bool)`
`func (o *AuditDetails) 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 *AuditDetails) SetModified(v time.Time)`
`func (o *AuditDetails) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
## Methods
@@ -96,20 +96,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *BaseCommonDto) GetCreated() time.Time`
`func (o *BaseCommonDto) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *BaseCommonDto) GetCreatedOk() (*time.Time, bool)`
`func (o *BaseCommonDto) 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 *BaseCommonDto) SetCreated(v time.Time)`
`func (o *BaseCommonDto) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -121,20 +121,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *BaseCommonDto) GetModified() time.Time`
`func (o *BaseCommonDto) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *BaseCommonDto) GetModifiedOk() (*time.Time, bool)`
`func (o *BaseCommonDto) 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 *BaseCommonDto) SetModified(v time.Time)`
`func (o *BaseCommonDto) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
## Methods
@@ -96,20 +96,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *BaseCommonDto1) GetCreated() time.Time`
`func (o *BaseCommonDto1) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *BaseCommonDto1) GetCreatedOk() (*time.Time, bool)`
`func (o *BaseCommonDto1) 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 *BaseCommonDto1) SetCreated(v time.Time)`
`func (o *BaseCommonDto1) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -121,20 +121,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *BaseCommonDto1) GetModified() time.Time`
`func (o *BaseCommonDto1) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *BaseCommonDto1) GetModifiedOk() (*time.Time, bool)`
`func (o *BaseCommonDto1) 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 *BaseCommonDto1) SetModified(v time.Time)`
`func (o *BaseCommonDto1) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -18,18 +18,18 @@ 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]
**Modified** | Pointer to **time.Time** | Modified time of the campaign | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Modified time of the campaign | [optional] [readonly]
**Filter** | Pointer to [**FullcampaignAllOfFilter**](fullcampaign-all-of-filter) | | [optional]
**SunsetCommentsRequired** | Pointer to **bool** | Determines if comments on sunset date changes are required. | [optional] [default to true]
**SourceOwnerCampaignInfo** | Pointer to [**FullcampaignAllOfSourceOwnerCampaignInfo**](fullcampaign-all-of-source-owner-campaign-info) | | [optional]
@@ -125,20 +125,20 @@ SetDescription sets Description field to given value.
### GetDeadline
`func (o *Campaign) GetDeadline() time.Time`
`func (o *Campaign) GetDeadline() SailPointTime`
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
### GetDeadlineOk
`func (o *Campaign) GetDeadlineOk() (*time.Time, bool)`
`func (o *Campaign) 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 *Campaign) SetDeadline(v time.Time)`
`func (o *Campaign) SetDeadline(v SailPointTime)`
SetDeadline sets Deadline field to given value.
@@ -295,20 +295,20 @@ HasCorrelatedStatus returns a boolean if a field has been set.
### GetCreated
`func (o *Campaign) GetCreated() time.Time`
`func (o *Campaign) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Campaign) GetCreatedOk() (*time.Time, bool)`
`func (o *Campaign) 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 *Campaign) SetCreated(v time.Time)`
`func (o *Campaign) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -395,20 +395,20 @@ HasAlerts returns a boolean if a field has been set.
### GetModified
`func (o *Campaign) GetModified() time.Time`
`func (o *Campaign) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Campaign) GetModifiedOk() (*time.Time, bool)`
`func (o *Campaign) 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 *Campaign) SetModified(v time.Time)`
`func (o *Campaign) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -18,9 +18,9 @@ Name | Type | Description | Notes
**Id** | **string** | Campaign's unique ID. |
**Name** | **string** | Campaign's name. |
**Description** | **string** | Campaign's extended description. |
**Created** | **time.Time** | Date and time when the campaign was created. |
**Created** | **SailPointTime** | Date and time when the campaign was created. |
**Modified** | Pointer to **NullableTime** | Date and time when the campaign was last modified. | [optional]
**Deadline** | **time.Time** | Date and time when the campaign is due. |
**Deadline** | **SailPointTime** | Date and time when the campaign is due. |
**Type** | **map[string]interface{}** | Campaign's type. |
**CampaignOwner** | [**CampaignActivatedCampaignCampaignOwner**](campaign-activated-campaign-campaign-owner) | |
**Status** | **map[string]interface{}** | Campaign's current status. |
@@ -29,7 +29,7 @@ Name | Type | Description | Notes
### NewCampaignActivatedCampaign
`func NewCampaignActivatedCampaign(id string, name string, description string, created time.Time, deadline time.Time, type_ map[string]interface{}, campaignOwner CampaignActivatedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignActivatedCampaign`
`func NewCampaignActivatedCampaign(id string, name string, description string, created SailPointTime, deadline SailPointTime, type_ map[string]interface{}, campaignOwner CampaignActivatedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignActivatedCampaign`
NewCampaignActivatedCampaign instantiates a new CampaignActivatedCampaign object
This constructor will assign default values to properties that have it defined,
@@ -106,40 +106,40 @@ SetDescription sets Description field to given value.
### GetCreated
`func (o *CampaignActivatedCampaign) GetCreated() time.Time`
`func (o *CampaignActivatedCampaign) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CampaignActivatedCampaign) GetCreatedOk() (*time.Time, bool)`
`func (o *CampaignActivatedCampaign) 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 *CampaignActivatedCampaign) SetCreated(v time.Time)`
`func (o *CampaignActivatedCampaign) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *CampaignActivatedCampaign) GetModified() time.Time`
`func (o *CampaignActivatedCampaign) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CampaignActivatedCampaign) GetModifiedOk() (*time.Time, bool)`
`func (o *CampaignActivatedCampaign) 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 *CampaignActivatedCampaign) SetModified(v time.Time)`
`func (o *CampaignActivatedCampaign) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -161,20 +161,20 @@ HasModified returns a boolean if a field has been set.
UnsetModified ensures that no value is present for Modified, not even an explicit nil
### GetDeadline
`func (o *CampaignActivatedCampaign) GetDeadline() time.Time`
`func (o *CampaignActivatedCampaign) GetDeadline() SailPointTime`
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
### GetDeadlineOk
`func (o *CampaignActivatedCampaign) GetDeadlineOk() (*time.Time, bool)`
`func (o *CampaignActivatedCampaign) 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 *CampaignActivatedCampaign) SetDeadline(v time.Time)`
`func (o *CampaignActivatedCampaign) SetDeadline(v SailPointTime)`
SetDeadline sets Deadline field to given value.

View File

@@ -18,9 +18,9 @@ Name | Type | Description | Notes
**Id** | **string** | Campaign's unique ID for the campaign. |
**Name** | **string** | Campaign's unique ID. |
**Description** | **string** | Campaign's extended description. |
**Created** | **time.Time** | Date and time when the campaign was created. |
**Created** | **SailPointTime** | Date and time when the campaign was created. |
**Modified** | Pointer to **NullableTime** | Date and time when the campaign was last modified. | [optional]
**Deadline** | **time.Time** | Date and time when the campaign is due. |
**Deadline** | **SailPointTime** | Date and time when the campaign is due. |
**Type** | **map[string]interface{}** | Campaign's type. |
**CampaignOwner** | [**CampaignActivatedCampaignCampaignOwner**](campaign-activated-campaign-campaign-owner) | |
**Status** | **map[string]interface{}** | Campaign's current status. |
@@ -29,7 +29,7 @@ Name | Type | Description | Notes
### NewCampaignEndedCampaign
`func NewCampaignEndedCampaign(id string, name string, description string, created time.Time, deadline time.Time, type_ map[string]interface{}, campaignOwner CampaignActivatedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignEndedCampaign`
`func NewCampaignEndedCampaign(id string, name string, description string, created SailPointTime, deadline SailPointTime, type_ map[string]interface{}, campaignOwner CampaignActivatedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignEndedCampaign`
NewCampaignEndedCampaign instantiates a new CampaignEndedCampaign object
This constructor will assign default values to properties that have it defined,
@@ -106,40 +106,40 @@ SetDescription sets Description field to given value.
### GetCreated
`func (o *CampaignEndedCampaign) GetCreated() time.Time`
`func (o *CampaignEndedCampaign) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CampaignEndedCampaign) GetCreatedOk() (*time.Time, bool)`
`func (o *CampaignEndedCampaign) 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 *CampaignEndedCampaign) SetCreated(v time.Time)`
`func (o *CampaignEndedCampaign) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *CampaignEndedCampaign) GetModified() time.Time`
`func (o *CampaignEndedCampaign) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CampaignEndedCampaign) GetModifiedOk() (*time.Time, bool)`
`func (o *CampaignEndedCampaign) 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 *CampaignEndedCampaign) SetModified(v time.Time)`
`func (o *CampaignEndedCampaign) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -161,20 +161,20 @@ HasModified returns a boolean if a field has been set.
UnsetModified ensures that no value is present for Modified, not even an explicit nil
### GetDeadline
`func (o *CampaignEndedCampaign) GetDeadline() time.Time`
`func (o *CampaignEndedCampaign) GetDeadline() SailPointTime`
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
### GetDeadlineOk
`func (o *CampaignEndedCampaign) GetDeadlineOk() (*time.Time, bool)`
`func (o *CampaignEndedCampaign) 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 *CampaignEndedCampaign) SetDeadline(v time.Time)`
`func (o *CampaignEndedCampaign) SetDeadline(v SailPointTime)`
SetDeadline sets Deadline field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**Id** | **string** | Campaign's unique ID. |
**Name** | **string** | Campaign's name. |
**Description** | **string** | Campaign's extended description. |
**Created** | **time.Time** | Date and time when the campaign was created. |
**Created** | **SailPointTime** | Date and time when the campaign was created. |
**Modified** | Pointer to **NullableString** | Date and time when the campaign was last modified. | [optional]
**Deadline** | Pointer to **NullableString** | Date and time when the campaign must be finished. | [optional]
**Type** | **map[string]interface{}** | Campaign's type. |
@@ -29,7 +29,7 @@ Name | Type | Description | Notes
### NewCampaignGeneratedCampaign
`func NewCampaignGeneratedCampaign(id string, name string, description string, created time.Time, type_ map[string]interface{}, campaignOwner CampaignGeneratedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignGeneratedCampaign`
`func NewCampaignGeneratedCampaign(id string, name string, description string, created SailPointTime, type_ map[string]interface{}, campaignOwner CampaignGeneratedCampaignCampaignOwner, status map[string]interface{}, ) *CampaignGeneratedCampaign`
NewCampaignGeneratedCampaign instantiates a new CampaignGeneratedCampaign object
This constructor will assign default values to properties that have it defined,
@@ -106,20 +106,20 @@ SetDescription sets Description field to given value.
### GetCreated
`func (o *CampaignGeneratedCampaign) GetCreated() time.Time`
`func (o *CampaignGeneratedCampaign) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CampaignGeneratedCampaign) GetCreatedOk() (*time.Time, bool)`
`func (o *CampaignGeneratedCampaign) 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 *CampaignGeneratedCampaign) SetCreated(v time.Time)`
`func (o *CampaignGeneratedCampaign) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

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.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**Id** | Pointer to **string** | Id of the campaign template | [optional]
**Name** | **string** | This template's name. Has no bearing on generated campaigns' names. |
**Description** | **string** | This template's description. Has no bearing on generated campaigns' descriptions. |
**Created** | **time.Time** | Creation date of Campaign Template | [readonly]
**Created** | **SailPointTime** | Creation date of Campaign Template | [readonly]
**Modified** | **NullableTime** | Modification date of Campaign Template | [readonly]
**Scheduled** | Pointer to **bool** | Indicates if this campaign template has been scheduled. | [optional] [readonly] [default to false]
**OwnerRef** | Pointer to [**CampaignTemplateOwnerRef**](campaign-template-owner-ref) | | [optional]
@@ -29,7 +29,7 @@ Name | Type | Description | Notes
### NewCampaignTemplate
`func NewCampaignTemplate(name string, description string, created time.Time, modified NullableTime, campaign Campaign, ) *CampaignTemplate`
`func NewCampaignTemplate(name string, description string, created SailPointTime, modified NullableTime, campaign Campaign, ) *CampaignTemplate`
NewCampaignTemplate instantiates a new CampaignTemplate object
This constructor will assign default values to properties that have it defined,
@@ -111,40 +111,40 @@ SetDescription sets Description field to given value.
### GetCreated
`func (o *CampaignTemplate) GetCreated() time.Time`
`func (o *CampaignTemplate) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CampaignTemplate) GetCreatedOk() (*time.Time, bool)`
`func (o *CampaignTemplate) 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 *CampaignTemplate) SetCreated(v time.Time)`
`func (o *CampaignTemplate) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *CampaignTemplate) GetModified() time.Time`
`func (o *CampaignTemplate) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CampaignTemplate) GetModifiedOk() (*time.Time, bool)`
`func (o *CampaignTemplate) 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 *CampaignTemplate) SetModified(v time.Time)`
`func (o *CampaignTemplate) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | ID of the account activity itself | [optional]
**Name** | Pointer to **string** | | [optional]
**Created** | Pointer to **time.Time** | | [optional]
**Created** | Pointer to **SailPointTime** | | [optional]
**Modified** | Pointer to **NullableTime** | | [optional]
**Completed** | Pointer to **NullableTime** | | [optional]
**CompletionStatus** | Pointer to [**NullableCompletionStatus**](completion-status) | | [optional]
@@ -103,20 +103,20 @@ HasName returns a boolean if a field has been set.
### GetCreated
`func (o *CancelableAccountActivity) GetCreated() time.Time`
`func (o *CancelableAccountActivity) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CancelableAccountActivity) GetCreatedOk() (*time.Time, bool)`
`func (o *CancelableAccountActivity) 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 *CancelableAccountActivity) SetCreated(v time.Time)`
`func (o *CancelableAccountActivity) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -128,20 +128,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *CancelableAccountActivity) GetModified() time.Time`
`func (o *CancelableAccountActivity) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CancelableAccountActivity) GetModifiedOk() (*time.Time, bool)`
`func (o *CancelableAccountActivity) 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 *CancelableAccountActivity) SetModified(v time.Time)`
`func (o *CancelableAccountActivity) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -163,20 +163,20 @@ HasModified returns a boolean if a field has been set.
UnsetModified ensures that no value is present for Modified, not even an explicit nil
### GetCompleted
`func (o *CancelableAccountActivity) GetCompleted() time.Time`
`func (o *CancelableAccountActivity) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *CancelableAccountActivity) GetCompletedOk() (*time.Time, bool)`
`func (o *CancelableAccountActivity) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *CancelableAccountActivity) SetCompleted(v time.Time)`
`func (o *CancelableAccountActivity) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comment** | Pointer to **string** | Comment made by the owner when cancelling the associated request. | [optional]
**Owner** | Pointer to [**OwnerDto**](owner-dto) | | [optional]
**Modified** | Pointer to **time.Time** | Date comment was added by the owner when cancelling the associated request. | [optional]
**Modified** | Pointer to **SailPointTime** | Date comment was added by the owner when cancelling the associated request. | [optional]
## Methods
@@ -90,20 +90,20 @@ HasOwner returns a boolean if a field has been set.
### GetModified
`func (o *CancelledRequestDetails) GetModified() time.Time`
`func (o *CancelledRequestDetails) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CancelledRequestDetails) GetModifiedOk() (*time.Time, bool)`
`func (o *CancelledRequestDetails) 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 *CancelledRequestDetails) SetModified(v time.Time)`
`func (o *CancelledRequestDetails) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CampaignRef** | [**CampaignReference**](campaign-reference) | |
**Phase** | [**CertificationPhase**](certification-phase) | |
**Due** | **time.Time** | Date and time when the certification is due. |
**Signed** | **time.Time** | Date and time when the reviewer signed off on the certification. |
**Due** | **SailPointTime** | Date and time when the certification is due. |
**Signed** | **SailPointTime** | Date and time when the reviewer signed off on the certification. |
**Reviewer** | [**Reviewer**](reviewer) | |
**Reassignment** | Pointer to [**Reassignment**](reassignment) | | [optional]
**HasErrors** | **bool** | Indicates whether the certification has any errors. |
@@ -33,7 +33,7 @@ Name | Type | Description | Notes
### NewCertificationDto
`func NewCertificationDto(campaignRef CampaignReference, phase CertificationPhase, due time.Time, signed time.Time, reviewer Reviewer, hasErrors bool, completed bool, decisionsMade int32, decisionsTotal int32, entitiesCompleted int32, entitiesTotal int32, ) *CertificationDto`
`func NewCertificationDto(campaignRef CampaignReference, phase CertificationPhase, due SailPointTime, signed SailPointTime, reviewer Reviewer, hasErrors bool, completed bool, decisionsMade int32, decisionsTotal int32, entitiesCompleted int32, entitiesTotal int32, ) *CertificationDto`
NewCertificationDto instantiates a new CertificationDto object
This constructor will assign default values to properties that have it defined,
@@ -90,40 +90,40 @@ SetPhase sets Phase field to given value.
### GetDue
`func (o *CertificationDto) GetDue() time.Time`
`func (o *CertificationDto) GetDue() SailPointTime`
GetDue returns the Due field if non-nil, zero value otherwise.
### GetDueOk
`func (o *CertificationDto) GetDueOk() (*time.Time, bool)`
`func (o *CertificationDto) GetDueOk() (*SailPointTime, bool)`
GetDueOk returns a tuple with the Due field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDue
`func (o *CertificationDto) SetDue(v time.Time)`
`func (o *CertificationDto) SetDue(v SailPointTime)`
SetDue sets Due field to given value.
### GetSigned
`func (o *CertificationDto) GetSigned() time.Time`
`func (o *CertificationDto) GetSigned() SailPointTime`
GetSigned returns the Signed field if non-nil, zero value otherwise.
### GetSignedOk
`func (o *CertificationDto) GetSignedOk() (*time.Time, bool)`
`func (o *CertificationDto) GetSignedOk() (*SailPointTime, bool)`
GetSignedOk returns a tuple with the Signed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSigned
`func (o *CertificationDto) SetSigned(v time.Time)`
`func (o *CertificationDto) SetSigned(v SailPointTime)`
SetSigned sets Signed field to given value.

View File

@@ -17,12 +17,12 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | Certification's unique ID. |
**Name** | **string** | Certification's name. |
**Created** | **time.Time** | Date and time when the certification was created. |
**Created** | **SailPointTime** | Date and time when the certification was created. |
**Modified** | Pointer to **NullableTime** | Date and time when the certification was last modified. | [optional]
**CampaignRef** | [**CampaignReference**](campaign-reference) | |
**Phase** | [**CertificationPhase**](certification-phase) | |
**Due** | **time.Time** | Date and time when the certification is due. |
**Signed** | **time.Time** | Date and time when the reviewer signed off on the certification. |
**Due** | **SailPointTime** | Date and time when the certification is due. |
**Signed** | **SailPointTime** | Date and time when the reviewer signed off on the certification. |
**Reviewer** | [**Reviewer**](reviewer) | |
**Reassignment** | Pointer to [**Reassignment**](reassignment) | | [optional]
**HasErrors** | **bool** | Indicates whether the certification has any errors. |
@@ -37,7 +37,7 @@ Name | Type | Description | Notes
### NewCertificationSignedOffCertification
`func NewCertificationSignedOffCertification(id string, name string, created time.Time, campaignRef CampaignReference, phase CertificationPhase, due time.Time, signed time.Time, reviewer Reviewer, hasErrors bool, completed bool, decisionsMade int32, decisionsTotal int32, entitiesCompleted int32, entitiesTotal int32, ) *CertificationSignedOffCertification`
`func NewCertificationSignedOffCertification(id string, name string, created SailPointTime, campaignRef CampaignReference, phase CertificationPhase, due SailPointTime, signed SailPointTime, reviewer Reviewer, hasErrors bool, completed bool, decisionsMade int32, decisionsTotal int32, entitiesCompleted int32, entitiesTotal int32, ) *CertificationSignedOffCertification`
NewCertificationSignedOffCertification instantiates a new CertificationSignedOffCertification object
This constructor will assign default values to properties that have it defined,
@@ -94,40 +94,40 @@ SetName sets Name field to given value.
### GetCreated
`func (o *CertificationSignedOffCertification) GetCreated() time.Time`
`func (o *CertificationSignedOffCertification) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CertificationSignedOffCertification) GetCreatedOk() (*time.Time, bool)`
`func (o *CertificationSignedOffCertification) 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 *CertificationSignedOffCertification) SetCreated(v time.Time)`
`func (o *CertificationSignedOffCertification) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *CertificationSignedOffCertification) GetModified() time.Time`
`func (o *CertificationSignedOffCertification) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CertificationSignedOffCertification) GetModifiedOk() (*time.Time, bool)`
`func (o *CertificationSignedOffCertification) 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 *CertificationSignedOffCertification) SetModified(v time.Time)`
`func (o *CertificationSignedOffCertification) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -189,40 +189,40 @@ SetPhase sets Phase field to given value.
### GetDue
`func (o *CertificationSignedOffCertification) GetDue() time.Time`
`func (o *CertificationSignedOffCertification) GetDue() SailPointTime`
GetDue returns the Due field if non-nil, zero value otherwise.
### GetDueOk
`func (o *CertificationSignedOffCertification) GetDueOk() (*time.Time, bool)`
`func (o *CertificationSignedOffCertification) GetDueOk() (*SailPointTime, bool)`
GetDueOk returns a tuple with the Due field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDue
`func (o *CertificationSignedOffCertification) SetDue(v time.Time)`
`func (o *CertificationSignedOffCertification) SetDue(v SailPointTime)`
SetDue sets Due field to given value.
### GetSigned
`func (o *CertificationSignedOffCertification) GetSigned() time.Time`
`func (o *CertificationSignedOffCertification) GetSigned() SailPointTime`
GetSigned returns the Signed field if non-nil, zero value otherwise.
### GetSignedOk
`func (o *CertificationSignedOffCertification) GetSignedOk() (*time.Time, bool)`
`func (o *CertificationSignedOffCertification) GetSignedOk() (*SailPointTime, bool)`
GetSignedOk returns a tuple with the Signed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSigned
`func (o *CertificationSignedOffCertification) SetSigned(v time.Time)`
`func (o *CertificationSignedOffCertification) SetSigned(v SailPointTime)`
SetSigned sets Signed field to given value.

View File

@@ -21,7 +21,7 @@ Name | Type | Description | Notes
**TargetId** | Pointer to **string** | The ID of the item being operated on by this task. | [optional]
**Status** | Pointer to **string** | The status of the task. | [optional]
**Errors** | Pointer to [**[]ErrorMessageDto**](error-message-dto) | | [optional]
**Created** | Pointer to **time.Time** | The date and time on which this task was created. | [optional]
**Created** | Pointer to **SailPointTime** | The date and time on which this task was created. | [optional]
## Methods
@@ -194,20 +194,20 @@ HasErrors returns a boolean if a field has been set.
### GetCreated
`func (o *CertificationTask) GetCreated() time.Time`
`func (o *CertificationTask) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CertificationTask) GetCreatedOk() (*time.Time, bool)`
`func (o *CertificationTask) 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 *CertificationTask) SetCreated(v time.Time)`
`func (o *CertificationTask) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ClientId** | Pointer to **string** | Log configuration's client ID | [optional]
**DurationMinutes** | **int32** | Duration in minutes for log configuration to remain in effect before resetting to defaults |
**Expiration** | Pointer to **time.Time** | Expiration date-time of the log configuration request | [optional]
**Expiration** | Pointer to **SailPointTime** | Expiration date-time of the log configuration request | [optional]
**RootLevel** | [**StandardLevel**](standard-level) | |
**LogLevels** | Pointer to [**map[string]StandardLevel**](standard-level) | Mapping of identifiers to Standard Log Level values | [optional]
@@ -87,20 +87,20 @@ SetDurationMinutes sets DurationMinutes field to given value.
### GetExpiration
`func (o *ClientLogConfiguration) GetExpiration() time.Time`
`func (o *ClientLogConfiguration) GetExpiration() SailPointTime`
GetExpiration returns the Expiration field if non-nil, zero value otherwise.
### GetExpirationOk
`func (o *ClientLogConfiguration) GetExpirationOk() (*time.Time, bool)`
`func (o *ClientLogConfiguration) GetExpirationOk() (*SailPointTime, bool)`
GetExpirationOk returns a tuple with the Expiration field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetExpiration
`func (o *ClientLogConfiguration) SetExpiration(v time.Time)`
`func (o *ClientLogConfiguration) SetExpiration(v SailPointTime)`
SetExpiration sets Expiration field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**CommenterId** | Pointer to **string** | Id of the identity making the comment | [optional]
**CommenterName** | Pointer to **string** | Human-readable display name of the identity making the comment | [optional]
**Body** | Pointer to **string** | Content of the comment | [optional]
**Date** | Pointer to **time.Time** | Date and time comment was made | [optional]
**Date** | Pointer to **SailPointTime** | Date and time comment was made | [optional]
## Methods
@@ -116,20 +116,20 @@ HasBody returns a boolean if a field has been set.
### GetDate
`func (o *Comment) GetDate() time.Time`
`func (o *Comment) GetDate() SailPointTime`
GetDate returns the Date field if non-nil, zero value otherwise.
### GetDateOk
`func (o *Comment) GetDateOk() (*time.Time, bool)`
`func (o *Comment) GetDateOk() (*SailPointTime, bool)`
GetDateOk returns a tuple with the Date field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDate
`func (o *Comment) SetDate(v time.Time)`
`func (o *Comment) SetDate(v SailPointTime)`
SetDate sets Date field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comment** | Pointer to **NullableString** | Comment content. | [optional]
**Author** | Pointer to [**CommentDtoAuthor**](comment-dto-author) | | [optional]
**Created** | Pointer to **time.Time** | Date and time comment was created. | [optional]
**Created** | Pointer to **SailPointTime** | Date and time comment was created. | [optional]
## Methods
@@ -100,20 +100,20 @@ HasAuthor returns a boolean if a field has been set.
### GetCreated
`func (o *CommentDto) GetCreated() time.Time`
`func (o *CommentDto) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CommentDto) GetCreatedOk() (*time.Time, bool)`
`func (o *CommentDto) 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 *CommentDto) SetCreated(v time.Time)`
`func (o *CommentDto) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -16,7 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'CommentDto1', 'BetaCommentDto1']
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 *CommentDto1) GetCreated() time.Time`
`func (o *CommentDto1) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CommentDto1) GetCreatedOk() (*time.Time, bool)`
`func (o *CommentDto1) 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 *CommentDto1) SetCreated(v time.Time)`
`func (o *CommentDto1) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -19,7 +19,7 @@ Name | Type | Description | Notes
**Access** | Pointer to [**CommonAccessItemAccess**](common-access-item-access) | | [optional]
**Status** | Pointer to **string** | CONFIRMED or DENIED | [optional]
**CommonAccessType** | Pointer to **string** | | [optional]
**LastUpdated** | Pointer to **time.Time** | | [optional] [readonly]
**LastUpdated** | Pointer to **SailPointTime** | | [optional] [readonly]
**ReviewedByUser** | Pointer to **bool** | true if user has confirmed or denied status | [optional]
**LastReviewed** | Pointer to **NullableTime** | | [optional] [readonly]
**CreatedByUser** | Pointer to **bool** | | [optional] [default to false]
@@ -145,20 +145,20 @@ HasCommonAccessType returns a boolean if a field has been set.
### GetLastUpdated
`func (o *CommonAccessResponse) GetLastUpdated() time.Time`
`func (o *CommonAccessResponse) GetLastUpdated() SailPointTime`
GetLastUpdated returns the LastUpdated field if non-nil, zero value otherwise.
### GetLastUpdatedOk
`func (o *CommonAccessResponse) GetLastUpdatedOk() (*time.Time, bool)`
`func (o *CommonAccessResponse) GetLastUpdatedOk() (*SailPointTime, bool)`
GetLastUpdatedOk returns a tuple with the LastUpdated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastUpdated
`func (o *CommonAccessResponse) SetLastUpdated(v time.Time)`
`func (o *CommonAccessResponse) SetLastUpdated(v SailPointTime)`
SetLastUpdated sets LastUpdated field to given value.
@@ -195,20 +195,20 @@ HasReviewedByUser returns a boolean if a field has been set.
### GetLastReviewed
`func (o *CommonAccessResponse) GetLastReviewed() time.Time`
`func (o *CommonAccessResponse) GetLastReviewed() SailPointTime`
GetLastReviewed returns the LastReviewed field if non-nil, zero value otherwise.
### GetLastReviewedOk
`func (o *CommonAccessResponse) GetLastReviewedOk() (*time.Time, bool)`
`func (o *CommonAccessResponse) GetLastReviewedOk() (*SailPointTime, bool)`
GetLastReviewedOk returns a tuple with the LastReviewed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastReviewed
`func (o *CommonAccessResponse) SetLastReviewed(v time.Time)`
`func (o *CommonAccessResponse) SetLastReviewed(v SailPointTime)`
SetLastReviewed sets LastReviewed field to given value.

View File

@@ -17,9 +17,9 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The approval id. | [optional]
**Name** | Pointer to **string** | The name of the approval. | [optional]
**Created** | Pointer to **time.Time** | When the approval was created. | [optional]
**Modified** | Pointer to **time.Time** | When the approval was modified last time. | [optional]
**RequestCreated** | Pointer to **time.Time** | When the access-request was created. | [optional]
**Created** | Pointer to **SailPointTime** | When the approval was created. | [optional]
**Modified** | Pointer to **SailPointTime** | When the approval was modified last time. | [optional]
**RequestCreated** | Pointer to **SailPointTime** | When the access-request was created. | [optional]
**RequestType** | Pointer to [**NullableAccessRequestType**](access-request-type) | | [optional]
**Requester** | Pointer to [**AccessItemRequesterDto**](access-item-requester-dto) | | [optional]
**RequestedFor** | Pointer to [**RequestedItemStatusRequestedFor**](requested-item-status-requested-for) | | [optional]
@@ -111,20 +111,20 @@ HasName returns a boolean if a field has been set.
### GetCreated
`func (o *CompletedApproval) GetCreated() time.Time`
`func (o *CompletedApproval) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CompletedApproval) GetCreatedOk() (*time.Time, bool)`
`func (o *CompletedApproval) 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 *CompletedApproval) SetCreated(v time.Time)`
`func (o *CompletedApproval) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -136,20 +136,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *CompletedApproval) GetModified() time.Time`
`func (o *CompletedApproval) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CompletedApproval) GetModifiedOk() (*time.Time, bool)`
`func (o *CompletedApproval) 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 *CompletedApproval) SetModified(v time.Time)`
`func (o *CompletedApproval) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -161,20 +161,20 @@ HasModified returns a boolean if a field has been set.
### GetRequestCreated
`func (o *CompletedApproval) GetRequestCreated() time.Time`
`func (o *CompletedApproval) GetRequestCreated() SailPointTime`
GetRequestCreated returns the RequestCreated field if non-nil, zero value otherwise.
### GetRequestCreatedOk
`func (o *CompletedApproval) GetRequestCreatedOk() (*time.Time, bool)`
`func (o *CompletedApproval) GetRequestCreatedOk() (*SailPointTime, bool)`
GetRequestCreatedOk returns a tuple with the RequestCreated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRequestCreated
`func (o *CompletedApproval) SetRequestCreated(v time.Time)`
`func (o *CompletedApproval) SetRequestCreated(v SailPointTime)`
SetRequestCreated sets RequestCreated field to given value.
@@ -506,20 +506,20 @@ HasState returns a boolean if a field has been set.
### GetRemoveDate
`func (o *CompletedApproval) GetRemoveDate() time.Time`
`func (o *CompletedApproval) GetRemoveDate() SailPointTime`
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
### GetRemoveDateOk
`func (o *CompletedApproval) GetRemoveDateOk() (*time.Time, bool)`
`func (o *CompletedApproval) GetRemoveDateOk() (*SailPointTime, bool)`
GetRemoveDateOk returns a tuple with the RemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRemoveDate
`func (o *CompletedApproval) SetRemoveDate(v time.Time)`
`func (o *CompletedApproval) SetRemoveDate(v SailPointTime)`
SetRemoveDate sets RemoveDate field to given value.
@@ -566,20 +566,20 @@ HasRemoveDateUpdateRequested returns a boolean if a field has been set.
### GetCurrentRemoveDate
`func (o *CompletedApproval) GetCurrentRemoveDate() time.Time`
`func (o *CompletedApproval) GetCurrentRemoveDate() SailPointTime`
GetCurrentRemoveDate returns the CurrentRemoveDate field if non-nil, zero value otherwise.
### GetCurrentRemoveDateOk
`func (o *CompletedApproval) GetCurrentRemoveDateOk() (*time.Time, bool)`
`func (o *CompletedApproval) GetCurrentRemoveDateOk() (*SailPointTime, bool)`
GetCurrentRemoveDateOk returns a tuple with the CurrentRemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCurrentRemoveDate
`func (o *CompletedApproval) SetCurrentRemoveDate(v time.Time)`
`func (o *CompletedApproval) SetCurrentRemoveDate(v SailPointTime)`
SetCurrentRemoveDate sets CurrentRemoveDate field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**Comment** | Pointer to **string** | The comment from the trigger | [optional]
**Decision** | Pointer to [**CompletedApprovalState**](completed-approval-state) | | [optional]
**Reviewer** | Pointer to **string** | The name of the approver | [optional]
**Date** | Pointer to **time.Time** | The date and time the trigger decided on the request | [optional]
**Date** | Pointer to **SailPointTime** | The date and time the trigger decided on the request | [optional]
## Methods
@@ -116,20 +116,20 @@ HasReviewer returns a boolean if a field has been set.
### GetDate
`func (o *CompletedApprovalPreApprovalTriggerResult) GetDate() time.Time`
`func (o *CompletedApprovalPreApprovalTriggerResult) GetDate() SailPointTime`
GetDate returns the Date field if non-nil, zero value otherwise.
### GetDateOk
`func (o *CompletedApprovalPreApprovalTriggerResult) GetDateOk() (*time.Time, bool)`
`func (o *CompletedApprovalPreApprovalTriggerResult) GetDateOk() (*SailPointTime, bool)`
GetDateOk returns a tuple with the Date field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDate
`func (o *CompletedApprovalPreApprovalTriggerResult) SetDate(v time.Time)`
`func (o *CompletedApprovalPreApprovalTriggerResult) SetDate(v SailPointTime)`
SetDate sets Date field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ConfigType** | Pointer to [**ConfigTypeEnum**](config-type-enum) | | [optional]
**TargetIdentity** | Pointer to [**Identity1**](identity1) | | [optional]
**StartDate** | Pointer to **time.Time** | The date from which to start reassigning work items | [optional]
**EndDate** | Pointer to **time.Time** | The date from which to stop reassigning work items. If this is an empty string it indicates a permanent reassignment. | [optional]
**StartDate** | Pointer to **SailPointTime** | The date from which to start reassigning work items | [optional]
**EndDate** | Pointer to **SailPointTime** | The date from which to stop reassigning work items. If this is an empty string it indicates a permanent reassignment. | [optional]
**AuditDetails** | Pointer to [**AuditDetails**](audit-details) | | [optional]
## Methods
@@ -92,20 +92,20 @@ HasTargetIdentity returns a boolean if a field has been set.
### GetStartDate
`func (o *ConfigurationDetailsResponse) GetStartDate() time.Time`
`func (o *ConfigurationDetailsResponse) GetStartDate() SailPointTime`
GetStartDate returns the StartDate field if non-nil, zero value otherwise.
### GetStartDateOk
`func (o *ConfigurationDetailsResponse) GetStartDateOk() (*time.Time, bool)`
`func (o *ConfigurationDetailsResponse) GetStartDateOk() (*SailPointTime, bool)`
GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStartDate
`func (o *ConfigurationDetailsResponse) SetStartDate(v time.Time)`
`func (o *ConfigurationDetailsResponse) SetStartDate(v SailPointTime)`
SetStartDate sets StartDate field to given value.
@@ -117,20 +117,20 @@ HasStartDate returns a boolean if a field has been set.
### GetEndDate
`func (o *ConfigurationDetailsResponse) GetEndDate() time.Time`
`func (o *ConfigurationDetailsResponse) GetEndDate() SailPointTime`
GetEndDate returns the EndDate field if non-nil, zero value otherwise.
### GetEndDateOk
`func (o *ConfigurationDetailsResponse) GetEndDateOk() (*time.Time, bool)`
`func (o *ConfigurationDetailsResponse) GetEndDateOk() (*SailPointTime, bool)`
GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEndDate
`func (o *ConfigurationDetailsResponse) SetEndDate(v time.Time)`
`func (o *ConfigurationDetailsResponse) SetEndDate(v SailPointTime)`
SetEndDate sets EndDate field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**ReassignedFromId** | Pointer to **string** | The identity id to reassign an item from | [optional]
**ReassignedToId** | Pointer to **string** | The identity id to reassign an item to | [optional]
**ConfigType** | Pointer to [**ConfigTypeEnum**](config-type-enum) | | [optional]
**StartDate** | Pointer to **time.Time** | The date from which to start reassigning work items | [optional]
**StartDate** | Pointer to **SailPointTime** | The date from which to start reassigning work items | [optional]
**EndDate** | Pointer to **NullableTime** | The date from which to stop reassigning work items. If this is an null string it indicates a permanent reassignment. | [optional]
## Methods
@@ -117,20 +117,20 @@ HasConfigType returns a boolean if a field has been set.
### GetStartDate
`func (o *ConfigurationItemRequest) GetStartDate() time.Time`
`func (o *ConfigurationItemRequest) GetStartDate() SailPointTime`
GetStartDate returns the StartDate field if non-nil, zero value otherwise.
### GetStartDateOk
`func (o *ConfigurationItemRequest) GetStartDateOk() (*time.Time, bool)`
`func (o *ConfigurationItemRequest) GetStartDateOk() (*SailPointTime, bool)`
GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStartDate
`func (o *ConfigurationItemRequest) SetStartDate(v time.Time)`
`func (o *ConfigurationItemRequest) SetStartDate(v SailPointTime)`
SetStartDate sets StartDate field to given value.
@@ -142,20 +142,20 @@ HasStartDate returns a boolean if a field has been set.
### GetEndDate
`func (o *ConfigurationItemRequest) GetEndDate() time.Time`
`func (o *ConfigurationItemRequest) GetEndDate() SailPointTime`
GetEndDate returns the EndDate field if non-nil, zero value otherwise.
### GetEndDateOk
`func (o *ConfigurationItemRequest) GetEndDateOk() (*time.Time, bool)`
`func (o *ConfigurationItemRequest) GetEndDateOk() (*SailPointTime, bool)`
GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEndDate
`func (o *ConfigurationItemRequest) SetEndDate(v time.Time)`
`func (o *ConfigurationItemRequest) SetEndDate(v SailPointTime)`
SetEndDate sets EndDate field to given value.

View File

@@ -31,15 +31,15 @@ Name | Type | Description | Notes
**Enabled** | **bool** | An indicator of whether the API Client is enabled for use |
**StrongAuthSupported** | **bool** | An indicator of whether the API Client supports strong authentication |
**ClaimsSupported** | **bool** | An indicator of whether the API Client supports the serialization of SAML claims when used with the authorization_code flow |
**Created** | **time.Time** | The date and time, down to the millisecond, when the API Client was created |
**Modified** | **time.Time** | The date and time, down to the millisecond, when the API Client was last updated |
**Created** | **SailPointTime** | The date and time, down to the millisecond, when the API Client was created |
**Modified** | **SailPointTime** | The date and time, down to the millisecond, when the API Client was last updated |
**Scope** | **[]string** | Scopes of the API Client. |
## Methods
### NewCreateOAuthClientResponse
`func NewCreateOAuthClientResponse(id string, secret string, businessName string, homepageUrl string, name string, description string, accessTokenValiditySeconds int32, refreshTokenValiditySeconds int32, redirectUris []string, grantTypes []GrantType, accessType AccessType, type_ ClientType, internal bool, enabled bool, strongAuthSupported bool, claimsSupported bool, created time.Time, modified time.Time, scope []string, ) *CreateOAuthClientResponse`
`func NewCreateOAuthClientResponse(id string, secret string, businessName string, homepageUrl string, name string, description string, accessTokenValiditySeconds int32, refreshTokenValiditySeconds int32, redirectUris []string, grantTypes []GrantType, accessType AccessType, type_ ClientType, internal bool, enabled bool, strongAuthSupported bool, claimsSupported bool, created SailPointTime, modified SailPointTime, scope []string, ) *CreateOAuthClientResponse`
NewCreateOAuthClientResponse instantiates a new CreateOAuthClientResponse object
This constructor will assign default values to properties that have it defined,
@@ -376,40 +376,40 @@ SetClaimsSupported sets ClaimsSupported field to given value.
### GetCreated
`func (o *CreateOAuthClientResponse) GetCreated() time.Time`
`func (o *CreateOAuthClientResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CreateOAuthClientResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *CreateOAuthClientResponse) 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 *CreateOAuthClientResponse) SetCreated(v time.Time)`
`func (o *CreateOAuthClientResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *CreateOAuthClientResponse) GetModified() time.Time`
`func (o *CreateOAuthClientResponse) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *CreateOAuthClientResponse) GetModifiedOk() (*time.Time, bool)`
`func (o *CreateOAuthClientResponse) 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 *CreateOAuthClientResponse) SetModified(v time.Time)`
`func (o *CreateOAuthClientResponse) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -20,14 +20,14 @@ Name | Type | Description | Notes
**Scope** | **[]string** | Scopes of the personal access token. |
**Name** | **string** | The name of the personal access token. Cannot be the same as other personal access tokens owned by a user. |
**Owner** | [**PatOwner**](pat-owner) | |
**Created** | **time.Time** | The date and time, down to the millisecond, when this personal access token was created. |
**Created** | **SailPointTime** | The date and time, down to the millisecond, when this personal access token was created. |
**AccessTokenValiditySeconds** | **int32** | Number of seconds an access token is valid when generated using this Personal Access Token. If no value is specified, the token will be created with the default value of 43200. |
## Methods
### NewCreatePersonalAccessTokenResponse
`func NewCreatePersonalAccessTokenResponse(id string, secret string, scope []string, name string, owner PatOwner, created time.Time, accessTokenValiditySeconds int32, ) *CreatePersonalAccessTokenResponse`
`func NewCreatePersonalAccessTokenResponse(id string, secret string, scope []string, name string, owner PatOwner, created SailPointTime, accessTokenValiditySeconds int32, ) *CreatePersonalAccessTokenResponse`
NewCreatePersonalAccessTokenResponse instantiates a new CreatePersonalAccessTokenResponse object
This constructor will assign default values to properties that have it defined,
@@ -154,20 +154,20 @@ SetOwner sets Owner field to given value.
### GetCreated
`func (o *CreatePersonalAccessTokenResponse) GetCreated() time.Time`
`func (o *CreatePersonalAccessTokenResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *CreatePersonalAccessTokenResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *CreatePersonalAccessTokenResponse) 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 *CreatePersonalAccessTokenResponse) SetCreated(v time.Time)`
`func (o *CreatePersonalAccessTokenResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The entitlement id | [optional]
**Name** | Pointer to **string** | The entitlement name | [optional]
**Created** | Pointer to **time.Time** | Time when the entitlement was created | [optional]
**Modified** | Pointer to **time.Time** | Time when the entitlement was last modified | [optional]
**Created** | Pointer to **SailPointTime** | Time when the entitlement was created | [optional]
**Modified** | Pointer to **SailPointTime** | Time when the entitlement was last modified | [optional]
**Attribute** | Pointer to **NullableString** | The entitlement attribute name | [optional]
**Value** | Pointer to **string** | The value of the entitlement | [optional]
**SourceSchemaObjectType** | Pointer to **string** | The object type of the entitlement from the source schema | [optional]
@@ -105,20 +105,20 @@ HasName returns a boolean if a field has been set.
### GetCreated
`func (o *Entitlement) GetCreated() time.Time`
`func (o *Entitlement) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Entitlement) GetCreatedOk() (*time.Time, bool)`
`func (o *Entitlement) 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 *Entitlement) SetCreated(v time.Time)`
`func (o *Entitlement) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -130,20 +130,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *Entitlement) GetModified() time.Time`
`func (o *Entitlement) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Entitlement) GetModifiedOk() (*time.Time, bool)`
`func (o *Entitlement) 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 *Entitlement) SetModified(v time.Time)`
`func (o *Entitlement) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -1,213 +0,0 @@
---
id: beta-event-attributes
title: EventAttributes
pagination_label: EventAttributes
sidebar_label: EventAttributes
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'EventAttributes', 'BetaEventAttributes']
slug: /tools/sdk/go/beta/models/event-attributes
tags: ['SDK', 'Software Development Kit', 'EventAttributes', 'BetaEventAttributes']
---
# EventAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **NullableString** | The unique ID of the trigger |
**Filter** | Pointer to **NullableString** | JSON path expression that will limit which events the trigger will fire on | [optional]
**Description** | Pointer to **NullableString** | Description of the event trigger | [optional]
**AttributeToFilter** | Pointer to **NullableString** | The attribute to filter on | [optional]
**FormDefinitionId** | Pointer to **NullableString** | Form definition's unique identifier. | [optional]
## Methods
### NewEventAttributes
`func NewEventAttributes(id NullableString, ) *EventAttributes`
NewEventAttributes instantiates a new EventAttributes object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewEventAttributesWithDefaults
`func NewEventAttributesWithDefaults() *EventAttributes`
NewEventAttributesWithDefaults instantiates a new EventAttributes object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *EventAttributes) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *EventAttributes) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *EventAttributes) SetId(v string)`
SetId sets Id field to given value.
### SetIdNil
`func (o *EventAttributes) SetIdNil(b bool)`
SetIdNil sets the value for Id to be an explicit nil
### UnsetId
`func (o *EventAttributes) UnsetId()`
UnsetId ensures that no value is present for Id, not even an explicit nil
### GetFilter
`func (o *EventAttributes) GetFilter() string`
GetFilter returns the Filter field if non-nil, zero value otherwise.
### GetFilterOk
`func (o *EventAttributes) GetFilterOk() (*string, bool)`
GetFilterOk returns a tuple with the Filter field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFilter
`func (o *EventAttributes) SetFilter(v string)`
SetFilter sets Filter field to given value.
### HasFilter
`func (o *EventAttributes) HasFilter() bool`
HasFilter returns a boolean if a field has been set.
### SetFilterNil
`func (o *EventAttributes) SetFilterNil(b bool)`
SetFilterNil sets the value for Filter to be an explicit nil
### UnsetFilter
`func (o *EventAttributes) UnsetFilter()`
UnsetFilter ensures that no value is present for Filter, not even an explicit nil
### GetDescription
`func (o *EventAttributes) GetDescription() string`
GetDescription returns the Description field if non-nil, zero value otherwise.
### GetDescriptionOk
`func (o *EventAttributes) GetDescriptionOk() (*string, bool)`
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDescription
`func (o *EventAttributes) SetDescription(v string)`
SetDescription sets Description field to given value.
### HasDescription
`func (o *EventAttributes) HasDescription() bool`
HasDescription returns a boolean if a field has been set.
### SetDescriptionNil
`func (o *EventAttributes) SetDescriptionNil(b bool)`
SetDescriptionNil sets the value for Description to be an explicit nil
### UnsetDescription
`func (o *EventAttributes) UnsetDescription()`
UnsetDescription ensures that no value is present for Description, not even an explicit nil
### GetAttributeToFilter
`func (o *EventAttributes) GetAttributeToFilter() string`
GetAttributeToFilter returns the AttributeToFilter field if non-nil, zero value otherwise.
### GetAttributeToFilterOk
`func (o *EventAttributes) GetAttributeToFilterOk() (*string, bool)`
GetAttributeToFilterOk returns a tuple with the AttributeToFilter field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAttributeToFilter
`func (o *EventAttributes) SetAttributeToFilter(v string)`
SetAttributeToFilter sets AttributeToFilter field to given value.
### HasAttributeToFilter
`func (o *EventAttributes) HasAttributeToFilter() bool`
HasAttributeToFilter returns a boolean if a field has been set.
### SetAttributeToFilterNil
`func (o *EventAttributes) SetAttributeToFilterNil(b bool)`
SetAttributeToFilterNil sets the value for AttributeToFilter to be an explicit nil
### UnsetAttributeToFilter
`func (o *EventAttributes) UnsetAttributeToFilter()`
UnsetAttributeToFilter ensures that no value is present for AttributeToFilter, not even an explicit nil
### GetFormDefinitionId
`func (o *EventAttributes) GetFormDefinitionId() string`
GetFormDefinitionId returns the FormDefinitionId field if non-nil, zero value otherwise.
### GetFormDefinitionIdOk
`func (o *EventAttributes) GetFormDefinitionIdOk() (*string, bool)`
GetFormDefinitionIdOk returns a tuple with the FormDefinitionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFormDefinitionId
`func (o *EventAttributes) SetFormDefinitionId(v string)`
SetFormDefinitionId sets FormDefinitionId field to given value.
### HasFormDefinitionId
`func (o *EventAttributes) HasFormDefinitionId() bool`
HasFormDefinitionId returns a boolean if a field has been set.
### SetFormDefinitionIdNil
`func (o *EventAttributes) SetFormDefinitionIdNil(b bool)`
SetFormDefinitionIdNil sets the value for FormDefinitionId to be an explicit nil
### UnsetFormDefinitionId
`func (o *EventAttributes) UnsetFormDefinitionId()`
UnsetFormDefinitionId ensures that no value is present for FormDefinitionId, not even an explicit nil

View File

@@ -1,182 +0,0 @@
---
id: beta-external-attributes
title: ExternalAttributes
pagination_label: ExternalAttributes
sidebar_label: ExternalAttributes
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'ExternalAttributes', 'BetaExternalAttributes']
slug: /tools/sdk/go/beta/models/external-attributes
tags: ['SDK', 'Software Development Kit', 'ExternalAttributes', 'BetaExternalAttributes']
---
# ExternalAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **NullableString** | A unique name for the external trigger | [optional]
**Description** | Pointer to **NullableString** | Additional context about the external trigger | [optional]
**ClientId** | Pointer to **NullableString** | OAuth Client ID to authenticate with this trigger | [optional]
**Url** | Pointer to **NullableString** | URL to invoke this workflow | [optional]
## Methods
### NewExternalAttributes
`func NewExternalAttributes() *ExternalAttributes`
NewExternalAttributes instantiates a new ExternalAttributes object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewExternalAttributesWithDefaults
`func NewExternalAttributesWithDefaults() *ExternalAttributes`
NewExternalAttributesWithDefaults instantiates a new ExternalAttributes object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetName
`func (o *ExternalAttributes) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *ExternalAttributes) GetNameOk() (*string, bool)`
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetName
`func (o *ExternalAttributes) SetName(v string)`
SetName sets Name field to given value.
### HasName
`func (o *ExternalAttributes) HasName() bool`
HasName returns a boolean if a field has been set.
### SetNameNil
`func (o *ExternalAttributes) SetNameNil(b bool)`
SetNameNil sets the value for Name to be an explicit nil
### UnsetName
`func (o *ExternalAttributes) UnsetName()`
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetDescription
`func (o *ExternalAttributes) GetDescription() string`
GetDescription returns the Description field if non-nil, zero value otherwise.
### GetDescriptionOk
`func (o *ExternalAttributes) GetDescriptionOk() (*string, bool)`
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDescription
`func (o *ExternalAttributes) SetDescription(v string)`
SetDescription sets Description field to given value.
### HasDescription
`func (o *ExternalAttributes) HasDescription() bool`
HasDescription returns a boolean if a field has been set.
### SetDescriptionNil
`func (o *ExternalAttributes) SetDescriptionNil(b bool)`
SetDescriptionNil sets the value for Description to be an explicit nil
### UnsetDescription
`func (o *ExternalAttributes) UnsetDescription()`
UnsetDescription ensures that no value is present for Description, not even an explicit nil
### GetClientId
`func (o *ExternalAttributes) GetClientId() string`
GetClientId returns the ClientId field if non-nil, zero value otherwise.
### GetClientIdOk
`func (o *ExternalAttributes) GetClientIdOk() (*string, bool)`
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetClientId
`func (o *ExternalAttributes) SetClientId(v string)`
SetClientId sets ClientId field to given value.
### HasClientId
`func (o *ExternalAttributes) HasClientId() bool`
HasClientId returns a boolean if a field has been set.
### SetClientIdNil
`func (o *ExternalAttributes) SetClientIdNil(b bool)`
SetClientIdNil sets the value for ClientId to be an explicit nil
### UnsetClientId
`func (o *ExternalAttributes) UnsetClientId()`
UnsetClientId ensures that no value is present for ClientId, not even an explicit nil
### GetUrl
`func (o *ExternalAttributes) GetUrl() string`
GetUrl returns the Url field if non-nil, zero value otherwise.
### GetUrlOk
`func (o *ExternalAttributes) GetUrlOk() (*string, bool)`
GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUrl
`func (o *ExternalAttributes) SetUrl(v string)`
SetUrl sets Url field to given value.
### HasUrl
`func (o *ExternalAttributes) HasUrl() bool`
HasUrl returns a boolean if a field has been set.
### SetUrlNil
`func (o *ExternalAttributes) SetUrlNil(b bool)`
SetUrlNil sets the value for Url to be an explicit nil
### UnsetUrl
`func (o *ExternalAttributes) UnsetUrl()`
UnsetUrl ensures that no value is present for Url, not even an explicit nil

View File

@@ -23,8 +23,8 @@ Name | Type | Description | Notes
**FormInput** | Pointer to [**[]FormDefinitionInput**](form-definition-input) | List of form inputs required to create a form-instance object. | [optional]
**FormElements** | Pointer to [**[]FormElement**](form-element) | List of nested form elements. | [optional]
**FormConditions** | Pointer to [**[]FormCondition**](form-condition) | Conditional logic that can dynamically modify the form as the recipient is interacting with it. | [optional]
**Created** | Pointer to **time.Time** | Created is the date the form definition was created | [optional]
**Modified** | Pointer to **time.Time** | Modified is the last date the form definition was modified | [optional]
**Created** | Pointer to **SailPointTime** | Created is the date the form definition was created | [optional]
**Modified** | Pointer to **SailPointTime** | Modified is the last date the form definition was modified | [optional]
## Methods
@@ -247,20 +247,20 @@ HasFormConditions returns a boolean if a field has been set.
### GetCreated
`func (o *FormDefinitionResponse) GetCreated() time.Time`
`func (o *FormDefinitionResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *FormDefinitionResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *FormDefinitionResponse) 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 *FormDefinitionResponse) SetCreated(v time.Time)`
`func (o *FormDefinitionResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -272,20 +272,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *FormDefinitionResponse) GetModified() time.Time`
`func (o *FormDefinitionResponse) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *FormDefinitionResponse) GetModifiedOk() (*time.Time, bool)`
`func (o *FormDefinitionResponse) 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 *FormDefinitionResponse) SetModified(v time.Time)`
`func (o *FormDefinitionResponse) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'FormInstanceResponse', 'BetaFormInsta
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Created** | Pointer to **time.Time** | Created is the date the form instance was assigned | [optional]
**Created** | Pointer to **SailPointTime** | Created is the date the form instance was assigned | [optional]
**CreatedBy** | Pointer to [**FormInstanceCreatedBy**](form-instance-created-by) | | [optional]
**Expire** | Pointer to **string** | Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record | [optional]
**FormConditions** | Pointer to [**[]FormCondition**](form-condition) | FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form | [optional]
@@ -25,7 +25,7 @@ Name | Type | Description | Notes
**FormErrors** | Pointer to [**[]FormError**](form-error) | FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors | [optional]
**FormInput** | Pointer to **map[string]map[string]interface{}** | FormInput is an object of form input labels to value | [optional]
**Id** | Pointer to **string** | Unique guid identifying this form instance | [optional]
**Modified** | Pointer to **time.Time** | Modified is the last date the form instance was modified | [optional]
**Modified** | Pointer to **SailPointTime** | Modified is the last date the form instance was modified | [optional]
**Recipients** | Pointer to [**[]FormInstanceRecipient**](form-instance-recipient) | Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it | [optional]
**StandAloneForm** | Pointer to **bool** | StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form | [optional] [default to false]
**StandAloneFormUrl** | Pointer to **string** | StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI | [optional]
@@ -52,20 +52,20 @@ but it doesn't guarantee that properties required by API are set
### GetCreated
`func (o *FormInstanceResponse) GetCreated() time.Time`
`func (o *FormInstanceResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *FormInstanceResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *FormInstanceResponse) 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 *FormInstanceResponse) SetCreated(v time.Time)`
`func (o *FormInstanceResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -322,20 +322,20 @@ HasId returns a boolean if a field has been set.
### GetModified
`func (o *FormInstanceResponse) GetModified() time.Time`
`func (o *FormInstanceResponse) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *FormInstanceResponse) GetModifiedOk() (*time.Time, bool)`
`func (o *FormInstanceResponse) 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 *FormInstanceResponse) SetModified(v time.Time)`
`func (o *FormInstanceResponse) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**DiscoveredVendor** | Pointer to **string** | The vendor associated with the discovered application. | [optional]
**Description** | Pointer to **string** | A brief description of the discovered application. | [optional]
**RecommendedConnectors** | Pointer to **[]string** | List of recommended connectors for the application. | [optional]
**DiscoveredAt** | Pointer to **time.Time** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**CreatedAt** | Pointer to **time.Time** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**DiscoveredAt** | Pointer to **SailPointTime** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**CreatedAt** | Pointer to **SailPointTime** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**Status** | Pointer to **string** | The status of an application within the discovery source. By default this field is set to \"ACTIVE\" when the application is discovered. If an application has been deleted from within the discovery source, the status will be set to \"INACTIVE\". | [optional]
**AssociatedSources** | Pointer to **[]string** | List of associated sources related to this discovered application. | [optional]
@@ -197,20 +197,20 @@ HasRecommendedConnectors returns a boolean if a field has been set.
### GetDiscoveredAt
`func (o *FullDiscoveredApplications) GetDiscoveredAt() time.Time`
`func (o *FullDiscoveredApplications) GetDiscoveredAt() SailPointTime`
GetDiscoveredAt returns the DiscoveredAt field if non-nil, zero value otherwise.
### GetDiscoveredAtOk
`func (o *FullDiscoveredApplications) GetDiscoveredAtOk() (*time.Time, bool)`
`func (o *FullDiscoveredApplications) GetDiscoveredAtOk() (*SailPointTime, bool)`
GetDiscoveredAtOk returns a tuple with the DiscoveredAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscoveredAt
`func (o *FullDiscoveredApplications) SetDiscoveredAt(v time.Time)`
`func (o *FullDiscoveredApplications) SetDiscoveredAt(v SailPointTime)`
SetDiscoveredAt sets DiscoveredAt field to given value.
@@ -222,20 +222,20 @@ HasDiscoveredAt returns a boolean if a field has been set.
### GetCreatedAt
`func (o *FullDiscoveredApplications) GetCreatedAt() time.Time`
`func (o *FullDiscoveredApplications) GetCreatedAt() SailPointTime`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *FullDiscoveredApplications) GetCreatedAtOk() (*time.Time, bool)`
`func (o *FullDiscoveredApplications) GetCreatedAtOk() (*SailPointTime, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *FullDiscoveredApplications) SetCreatedAt(v time.Time)`
`func (o *FullDiscoveredApplications) SetCreatedAt(v SailPointTime)`
SetCreatedAt sets CreatedAt field to given value.

View File

@@ -18,18 +18,18 @@ 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]
**Modified** | Pointer to **time.Time** | Modified time of the campaign | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Modified time of the campaign | [optional] [readonly]
**Filter** | Pointer to [**FullcampaignAllOfFilter**](fullcampaign-all-of-filter) | | [optional]
**SunsetCommentsRequired** | Pointer to **bool** | Determines if comments on sunset date changes are required. | [optional] [default to true]
**SourceOwnerCampaignInfo** | Pointer to [**FullcampaignAllOfSourceOwnerCampaignInfo**](fullcampaign-all-of-source-owner-campaign-info) | | [optional]
@@ -125,20 +125,20 @@ SetDescription sets Description field to given value.
### GetDeadline
`func (o *Fullcampaign) GetDeadline() time.Time`
`func (o *Fullcampaign) GetDeadline() SailPointTime`
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
### GetDeadlineOk
`func (o *Fullcampaign) GetDeadlineOk() (*time.Time, bool)`
`func (o *Fullcampaign) 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 *Fullcampaign) SetDeadline(v time.Time)`
`func (o *Fullcampaign) SetDeadline(v SailPointTime)`
SetDeadline sets Deadline field to given value.
@@ -295,20 +295,20 @@ HasCorrelatedStatus returns a boolean if a field has been set.
### GetCreated
`func (o *Fullcampaign) GetCreated() time.Time`
`func (o *Fullcampaign) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Fullcampaign) GetCreatedOk() (*time.Time, bool)`
`func (o *Fullcampaign) 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 *Fullcampaign) SetCreated(v time.Time)`
`func (o *Fullcampaign) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -395,20 +395,20 @@ HasAlerts returns a boolean if a field has been set.
### GetModified
`func (o *Fullcampaign) GetModified() time.Time`
`func (o *Fullcampaign) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Fullcampaign) GetModifiedOk() (*time.Time, bool)`
`func (o *Fullcampaign) 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 *Fullcampaign) SetModified(v time.Time)`
`func (o *Fullcampaign) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -18,18 +18,18 @@ 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]
**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 **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]
**Modified** | Pointer to **time.Time** | Modified time of the campaign | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Modified time of the campaign | [optional] [readonly]
**Filter** | Pointer to [**FullcampaignAllOfFilter**](fullcampaign-all-of-filter) | | [optional]
**SunsetCommentsRequired** | Pointer to **bool** | Determines if comments on sunset date changes are required. | [optional] [default to true]
**SourceOwnerCampaignInfo** | Pointer to [**FullcampaignAllOfSourceOwnerCampaignInfo**](fullcampaign-all-of-source-owner-campaign-info) | | [optional]
@@ -125,20 +125,20 @@ SetDescription sets Description field to given value.
### GetDeadline
`func (o *GetActiveCampaigns200ResponseInner) GetDeadline() time.Time`
`func (o *GetActiveCampaigns200ResponseInner) GetDeadline() SailPointTime`
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
### GetDeadlineOk
`func (o *GetActiveCampaigns200ResponseInner) GetDeadlineOk() (*time.Time, bool)`
`func (o *GetActiveCampaigns200ResponseInner) 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 *GetActiveCampaigns200ResponseInner) SetDeadline(v time.Time)`
`func (o *GetActiveCampaigns200ResponseInner) SetDeadline(v SailPointTime)`
SetDeadline sets Deadline field to given value.
@@ -295,20 +295,20 @@ HasCorrelatedStatus returns a boolean if a field has been set.
### GetCreated
`func (o *GetActiveCampaigns200ResponseInner) GetCreated() time.Time`
`func (o *GetActiveCampaigns200ResponseInner) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *GetActiveCampaigns200ResponseInner) GetCreatedOk() (*time.Time, bool)`
`func (o *GetActiveCampaigns200ResponseInner) 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 *GetActiveCampaigns200ResponseInner) SetCreated(v time.Time)`
`func (o *GetActiveCampaigns200ResponseInner) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -395,20 +395,20 @@ HasAlerts returns a boolean if a field has been set.
### GetModified
`func (o *GetActiveCampaigns200ResponseInner) GetModified() time.Time`
`func (o *GetActiveCampaigns200ResponseInner) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *GetActiveCampaigns200ResponseInner) GetModifiedOk() (*time.Time, bool)`
`func (o *GetActiveCampaigns200ResponseInner) 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 *GetActiveCampaigns200ResponseInner) SetModified(v time.Time)`
`func (o *GetActiveCampaigns200ResponseInner) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**DiscoveredVendor** | Pointer to **string** | The vendor associated with the discovered application. | [optional]
**Description** | Pointer to **string** | A brief description of the discovered application. | [optional]
**RecommendedConnectors** | Pointer to **[]string** | List of recommended connectors for the application. | [optional]
**DiscoveredAt** | Pointer to **time.Time** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**CreatedAt** | Pointer to **time.Time** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**DiscoveredAt** | Pointer to **SailPointTime** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**CreatedAt** | Pointer to **SailPointTime** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**Status** | Pointer to **string** | The status of an application within the discovery source. By default this field is set to \"ACTIVE\" when the application is discovered. If an application has been deleted from within the discovery source, the status will be set to \"INACTIVE\". | [optional]
**AssociatedSources** | Pointer to **[]string** | List of associated sources related to this discovered application. | [optional]
@@ -197,20 +197,20 @@ HasRecommendedConnectors returns a boolean if a field has been set.
### GetDiscoveredAt
`func (o *GetDiscoveredApplications200ResponseInner) GetDiscoveredAt() time.Time`
`func (o *GetDiscoveredApplications200ResponseInner) GetDiscoveredAt() SailPointTime`
GetDiscoveredAt returns the DiscoveredAt field if non-nil, zero value otherwise.
### GetDiscoveredAtOk
`func (o *GetDiscoveredApplications200ResponseInner) GetDiscoveredAtOk() (*time.Time, bool)`
`func (o *GetDiscoveredApplications200ResponseInner) GetDiscoveredAtOk() (*SailPointTime, bool)`
GetDiscoveredAtOk returns a tuple with the DiscoveredAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscoveredAt
`func (o *GetDiscoveredApplications200ResponseInner) SetDiscoveredAt(v time.Time)`
`func (o *GetDiscoveredApplications200ResponseInner) SetDiscoveredAt(v SailPointTime)`
SetDiscoveredAt sets DiscoveredAt field to given value.
@@ -222,20 +222,20 @@ HasDiscoveredAt returns a boolean if a field has been set.
### GetCreatedAt
`func (o *GetDiscoveredApplications200ResponseInner) GetCreatedAt() time.Time`
`func (o *GetDiscoveredApplications200ResponseInner) GetCreatedAt() SailPointTime`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *GetDiscoveredApplications200ResponseInner) GetCreatedAtOk() (*time.Time, bool)`
`func (o *GetDiscoveredApplications200ResponseInner) GetCreatedAtOk() (*SailPointTime, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *GetDiscoveredApplications200ResponseInner) SetCreatedAt(v time.Time)`
`func (o *GetDiscoveredApplications200ResponseInner) SetCreatedAt(v SailPointTime)`
SetCreatedAt sets CreatedAt field to given value.

View File

@@ -30,8 +30,8 @@ Name | Type | Description | Notes
**Enabled** | **bool** | An indicator of whether the API Client is enabled for use |
**StrongAuthSupported** | **bool** | An indicator of whether the API Client supports strong authentication |
**ClaimsSupported** | **bool** | An indicator of whether the API Client supports the serialization of SAML claims when used with the authorization_code flow |
**Created** | **time.Time** | The date and time, down to the millisecond, when the API Client was created |
**Modified** | **time.Time** | The date and time, down to the millisecond, when the API Client was last updated |
**Created** | **SailPointTime** | The date and time, down to the millisecond, when the API Client was created |
**Modified** | **SailPointTime** | The date and time, down to the millisecond, when the API Client was last updated |
**Secret** | Pointer to **NullableString** | | [optional]
**Metadata** | Pointer to **NullableString** | | [optional]
**LastUsed** | Pointer to **NullableTime** | The date and time, down to the millisecond, when this API Client was last used to generate an access token. This timestamp does not get updated on every API Client usage, but only once a day. This property can be useful for identifying which API Clients are no longer actively used and can be removed. | [optional]
@@ -41,7 +41,7 @@ Name | Type | Description | Notes
### NewGetOAuthClientResponse
`func NewGetOAuthClientResponse(id string, businessName NullableString, homepageUrl NullableString, name string, description NullableString, accessTokenValiditySeconds int32, refreshTokenValiditySeconds int32, redirectUris []string, grantTypes []GrantType, accessType AccessType, type_ ClientType, internal bool, enabled bool, strongAuthSupported bool, claimsSupported bool, created time.Time, modified time.Time, scope []string, ) *GetOAuthClientResponse`
`func NewGetOAuthClientResponse(id string, businessName NullableString, homepageUrl NullableString, name string, description NullableString, accessTokenValiditySeconds int32, refreshTokenValiditySeconds int32, redirectUris []string, grantTypes []GrantType, accessType AccessType, type_ ClientType, internal bool, enabled bool, strongAuthSupported bool, claimsSupported bool, created SailPointTime, modified SailPointTime, scope []string, ) *GetOAuthClientResponse`
NewGetOAuthClientResponse instantiates a new GetOAuthClientResponse object
This constructor will assign default values to properties that have it defined,
@@ -398,40 +398,40 @@ SetClaimsSupported sets ClaimsSupported field to given value.
### GetCreated
`func (o *GetOAuthClientResponse) GetCreated() time.Time`
`func (o *GetOAuthClientResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *GetOAuthClientResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *GetOAuthClientResponse) 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 *GetOAuthClientResponse) SetCreated(v time.Time)`
`func (o *GetOAuthClientResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *GetOAuthClientResponse) GetModified() time.Time`
`func (o *GetOAuthClientResponse) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *GetOAuthClientResponse) GetModifiedOk() (*time.Time, bool)`
`func (o *GetOAuthClientResponse) 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 *GetOAuthClientResponse) SetModified(v time.Time)`
`func (o *GetOAuthClientResponse) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -508,20 +508,20 @@ HasMetadata returns a boolean if a field has been set.
UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil
### GetLastUsed
`func (o *GetOAuthClientResponse) GetLastUsed() time.Time`
`func (o *GetOAuthClientResponse) GetLastUsed() SailPointTime`
GetLastUsed returns the LastUsed field if non-nil, zero value otherwise.
### GetLastUsedOk
`func (o *GetOAuthClientResponse) GetLastUsedOk() (*time.Time, bool)`
`func (o *GetOAuthClientResponse) GetLastUsedOk() (*SailPointTime, bool)`
GetLastUsedOk returns a tuple with the LastUsed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastUsed
`func (o *GetOAuthClientResponse) SetLastUsed(v time.Time)`
`func (o *GetOAuthClientResponse) SetLastUsed(v SailPointTime)`
SetLastUsed sets LastUsed field to given value.

View File

@@ -19,7 +19,7 @@ Name | Type | Description | Notes
**Name** | **string** | The name of the personal access token. Cannot be the same as other personal access tokens owned by a user. |
**Scope** | **[]string** | Scopes of the personal access token. |
**Owner** | [**PatOwner**](pat-owner) | |
**Created** | **time.Time** | The date and time, down to the millisecond, when this personal access token was created. |
**Created** | **SailPointTime** | The date and time, down to the millisecond, when this personal access token was created. |
**LastUsed** | Pointer to **NullableTime** | The date and time, down to the millisecond, when this personal access token was last used to generate an access token. This timestamp does not get updated on every PAT usage, but only once a day. This property can be useful for identifying which PATs are no longer actively used and can be removed. | [optional]
**Managed** | Pointer to **bool** | If true, this token is managed by the SailPoint platform, and is not visible in the user interface. For example, Workflows will create managed personal access tokens for users who create workflows. | [optional] [default to false]
@@ -27,7 +27,7 @@ Name | Type | Description | Notes
### NewGetPersonalAccessTokenResponse
`func NewGetPersonalAccessTokenResponse(id string, name string, scope []string, owner PatOwner, created time.Time, ) *GetPersonalAccessTokenResponse`
`func NewGetPersonalAccessTokenResponse(id string, name string, scope []string, owner PatOwner, created SailPointTime, ) *GetPersonalAccessTokenResponse`
NewGetPersonalAccessTokenResponse instantiates a new GetPersonalAccessTokenResponse object
This constructor will assign default values to properties that have it defined,
@@ -134,40 +134,40 @@ SetOwner sets Owner field to given value.
### GetCreated
`func (o *GetPersonalAccessTokenResponse) GetCreated() time.Time`
`func (o *GetPersonalAccessTokenResponse) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *GetPersonalAccessTokenResponse) GetCreatedOk() (*time.Time, bool)`
`func (o *GetPersonalAccessTokenResponse) 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 *GetPersonalAccessTokenResponse) SetCreated(v time.Time)`
`func (o *GetPersonalAccessTokenResponse) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetLastUsed
`func (o *GetPersonalAccessTokenResponse) GetLastUsed() time.Time`
`func (o *GetPersonalAccessTokenResponse) GetLastUsed() SailPointTime`
GetLastUsed returns the LastUsed field if non-nil, zero value otherwise.
### GetLastUsedOk
`func (o *GetPersonalAccessTokenResponse) GetLastUsedOk() (*time.Time, bool)`
`func (o *GetPersonalAccessTokenResponse) GetLastUsedOk() (*SailPointTime, bool)`
GetLastUsedOk returns a tuple with the LastUsed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastUsed
`func (o *GetPersonalAccessTokenResponse) SetLastUsed(v time.Time)`
`func (o *GetPersonalAccessTokenResponse) SetLastUsed(v SailPointTime)`
SetLastUsed sets LastUsed field to given value.

View File

@@ -17,15 +17,15 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the identity | [optional] [readonly]
**Name** | **string** | The identity's name is equivalent to its Display Name attribute. |
**Created** | Pointer to **time.Time** | Creation date of the identity | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the identity | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the identity | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the identity | [optional] [readonly]
**Alias** | Pointer to **string** | The identity's alternate unique identifier is equivalent to its Account Name on the authoritative source account schema. | [optional]
**EmailAddress** | Pointer to **NullableString** | The email address of the identity | [optional]
**ProcessingState** | Pointer to **NullableString** | The processing state of the identity | [optional]
**IdentityStatus** | Pointer to **string** | The identity's status in the system | [optional]
**ManagerRef** | Pointer to [**NullableIdentityManagerRef**](identity-manager-ref) | | [optional]
**IsManager** | Pointer to **bool** | Whether this identity is a manager of another identity | [optional] [default to false]
**LastRefresh** | Pointer to **time.Time** | The last time the identity was refreshed by the system | [optional]
**LastRefresh** | Pointer to **SailPointTime** | The last time the identity was refreshed by the system | [optional]
**Attributes** | Pointer to **map[string]interface{}** | A map with the identity attributes for the identity | [optional]
**LifecycleState** | Pointer to [**IdentityLifecycleState**](identity-lifecycle-state) | | [optional]
@@ -95,20 +95,20 @@ SetName sets Name field to given value.
### GetCreated
`func (o *Identity) GetCreated() time.Time`
`func (o *Identity) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Identity) GetCreatedOk() (*time.Time, bool)`
`func (o *Identity) 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 *Identity) SetCreated(v time.Time)`
`func (o *Identity) 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 *Identity) GetModified() time.Time`
`func (o *Identity) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Identity) GetModifiedOk() (*time.Time, bool)`
`func (o *Identity) 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 *Identity) SetModified(v time.Time)`
`func (o *Identity) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -325,20 +325,20 @@ HasIsManager returns a boolean if a field has been set.
### GetLastRefresh
`func (o *Identity) GetLastRefresh() time.Time`
`func (o *Identity) GetLastRefresh() SailPointTime`
GetLastRefresh returns the LastRefresh field if non-nil, zero value otherwise.
### GetLastRefreshOk
`func (o *Identity) GetLastRefreshOk() (*time.Time, bool)`
`func (o *Identity) GetLastRefreshOk() (*SailPointTime, bool)`
GetLastRefreshOk returns a tuple with the LastRefresh field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastRefresh
`func (o *Identity) SetLastRefresh(v time.Time)`
`func (o *Identity) SetLastRefresh(v SailPointTime)`
SetLastRefresh sets LastRefresh field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
**Description** | Pointer to **NullableString** | Identity profile's description. | [optional]
**Owner** | Pointer to [**NullableIdentityProfileAllOfOwner**](identity-profile-all-of-owner) | | [optional]
**Priority** | Pointer to **int64** | Identity profile's priority. | [optional]
@@ -105,20 +105,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *IdentityProfile) GetCreated() time.Time`
`func (o *IdentityProfile) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *IdentityProfile) GetCreatedOk() (*time.Time, bool)`
`func (o *IdentityProfile) 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 *IdentityProfile) SetCreated(v time.Time)`
`func (o *IdentityProfile) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -130,20 +130,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *IdentityProfile) GetModified() time.Time`
`func (o *IdentityProfile) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *IdentityProfile) GetModifiedOk() (*time.Time, bool)`
`func (o *IdentityProfile) 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 *IdentityProfile) SetModified(v time.Time)`
`func (o *IdentityProfile) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **NullableString** | Name of the Object |
**Created** | Pointer to **time.Time** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Last modification date of the Object | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Creation date of the Object | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Last modification date of the Object | [optional] [readonly]
**Description** | Pointer to **NullableString** | Identity profile's description. | [optional]
**Owner** | Pointer to [**NullableIdentityProfileAllOfOwner**](identity-profile-all-of-owner) | | [optional]
**Priority** | Pointer to **int64** | Identity profile's priority. | [optional]
@@ -105,20 +105,20 @@ SetName sets Name field to given value.
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetCreated
`func (o *IdentityProfile1) GetCreated() time.Time`
`func (o *IdentityProfile1) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *IdentityProfile1) GetCreatedOk() (*time.Time, bool)`
`func (o *IdentityProfile1) 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 *IdentityProfile1) SetCreated(v time.Time)`
`func (o *IdentityProfile1) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -130,20 +130,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *IdentityProfile1) GetModified() time.Time`
`func (o *IdentityProfile1) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *IdentityProfile1) GetModifiedOk() (*time.Time, bool)`
`func (o *IdentityProfile1) 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 *IdentityProfile1) SetModified(v time.Time)`
`func (o *IdentityProfile1) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -20,8 +20,8 @@ Name | Type | Description | Notes
**SubscriptionName** | **string** | Subscription name |
**SubscriptionId** | **string** | Subscription ID |
**Type** | [**InvocationStatusType**](invocation-status-type) | |
**Created** | **time.Time** | Invocation created timestamp. ISO-8601 in UTC. |
**Completed** | Pointer to **time.Time** | Invocation completed timestamp; empty fields imply invocation is in-flight or not completed. ISO-8601 in UTC. | [optional]
**Created** | **SailPointTime** | Invocation created timestamp. ISO-8601 in UTC. |
**Completed** | Pointer to **SailPointTime** | Invocation completed timestamp; empty fields imply invocation is in-flight or not completed. ISO-8601 in UTC. | [optional]
**StartInvocationInput** | [**StartInvocationInput**](start-invocation-input) | |
**CompleteInvocationInput** | Pointer to [**CompleteInvocationInput**](complete-invocation-input) | | [optional]
@@ -29,7 +29,7 @@ Name | Type | Description | Notes
### NewInvocationStatus
`func NewInvocationStatus(id string, triggerId string, subscriptionName string, subscriptionId string, type_ InvocationStatusType, created time.Time, startInvocationInput StartInvocationInput, ) *InvocationStatus`
`func NewInvocationStatus(id string, triggerId string, subscriptionName string, subscriptionId string, type_ InvocationStatusType, created SailPointTime, startInvocationInput StartInvocationInput, ) *InvocationStatus`
NewInvocationStatus instantiates a new InvocationStatus object
This constructor will assign default values to properties that have it defined,
@@ -146,40 +146,40 @@ SetType sets Type field to given value.
### GetCreated
`func (o *InvocationStatus) GetCreated() time.Time`
`func (o *InvocationStatus) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *InvocationStatus) GetCreatedOk() (*time.Time, bool)`
`func (o *InvocationStatus) 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 *InvocationStatus) SetCreated(v time.Time)`
`func (o *InvocationStatus) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetCompleted
`func (o *InvocationStatus) GetCompleted() time.Time`
`func (o *InvocationStatus) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *InvocationStatus) GetCompletedOk() (*time.Time, bool)`
`func (o *InvocationStatus) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *InvocationStatus) SetCompleted(v time.Time)`
`func (o *InvocationStatus) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -16,7 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'LatestOutlierSummary', 'BetaLatestOut
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **string** | The type of outlier summary | [optional]
**SnapshotDate** | Pointer to **time.Time** | The date the bulk outlier detection ran/snapshot was created | [optional]
**SnapshotDate** | Pointer to **SailPointTime** | The date the bulk outlier detection ran/snapshot was created | [optional]
**TotalOutliers** | Pointer to **int32** | Total number of outliers for the customer making the request | [optional]
**TotalIdentities** | Pointer to **int32** | Total number of identities for the customer making the request | [optional]
**TotalIgnored** | Pointer to **int32** | Total number of ignored outliers | [optional]
@@ -67,20 +67,20 @@ HasType returns a boolean if a field has been set.
### GetSnapshotDate
`func (o *LatestOutlierSummary) GetSnapshotDate() time.Time`
`func (o *LatestOutlierSummary) GetSnapshotDate() SailPointTime`
GetSnapshotDate returns the SnapshotDate field if non-nil, zero value otherwise.
### GetSnapshotDateOk
`func (o *LatestOutlierSummary) GetSnapshotDateOk() (*time.Time, bool)`
`func (o *LatestOutlierSummary) GetSnapshotDateOk() (*SailPointTime, bool)`
GetSnapshotDateOk returns a tuple with the SnapshotDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSnapshotDate
`func (o *LatestOutlierSummary) SetSnapshotDate(v time.Time)`
`func (o *LatestOutlierSummary) SetSnapshotDate(v SailPointTime)`
SetSnapshotDate sets SnapshotDate field to given value.

View File

@@ -16,8 +16,8 @@ tags: ['SDK', 'Software Development Kit', 'Launcher', 'BetaLauncher']
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | ID of the Launcher |
**Created** | **time.Time** | Date the Launcher was created |
**Modified** | **time.Time** | Date the Launcher was last modified |
**Created** | **SailPointTime** | Date the Launcher was created |
**Modified** | **SailPointTime** | Date the Launcher was last modified |
**Owner** | [**LauncherOwner**](launcher-owner) | |
**Name** | **string** | Name of the Launcher, limited to 255 characters |
**Description** | **string** | Description of the Launcher, limited to 2000 characters |
@@ -30,7 +30,7 @@ Name | Type | Description | Notes
### NewLauncher
`func NewLauncher(id string, created time.Time, modified time.Time, owner LauncherOwner, name string, description string, type_ string, disabled bool, config string, ) *Launcher`
`func NewLauncher(id string, created SailPointTime, modified SailPointTime, owner LauncherOwner, name string, description string, type_ string, disabled bool, config string, ) *Launcher`
NewLauncher instantiates a new Launcher object
This constructor will assign default values to properties that have it defined,
@@ -67,40 +67,40 @@ SetId sets Id field to given value.
### GetCreated
`func (o *Launcher) GetCreated() time.Time`
`func (o *Launcher) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *Launcher) GetCreatedOk() (*time.Time, bool)`
`func (o *Launcher) 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 *Launcher) SetCreated(v time.Time)`
`func (o *Launcher) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
### GetModified
`func (o *Launcher) GetModified() time.Time`
`func (o *Launcher) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *Launcher) GetModifiedOk() (*time.Time, bool)`
`func (o *Launcher) 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 *Launcher) SetModified(v time.Time)`
`func (o *Launcher) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -19,8 +19,8 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | Lifecycle state name. | [optional] [readonly]
**TechnicalName** | Pointer to **string** | Lifecycle state technical name. This is for internal use. | [optional] [readonly]
**Description** | Pointer to **string** | Lifecycle state description. | [optional]
**Created** | Pointer to **time.Time** | Lifecycle state created date. | [optional] [readonly]
**Modified** | Pointer to **time.Time** | Lifecycle state modified date. | [optional] [readonly]
**Created** | Pointer to **SailPointTime** | Lifecycle state created date. | [optional] [readonly]
**Modified** | Pointer to **SailPointTime** | Lifecycle state modified date. | [optional] [readonly]
**Enabled** | Pointer to **bool** | Indicates whether the lifecycle state is enabled or disabled. | [optional] [default to false]
**IdentityCount** | Pointer to **int32** | Number of identities that have the lifecycle state. | [optional] [readonly]
**EmailNotificationOption** | Pointer to [**EmailNotificationOption**](email-notification-option) | | [optional]
@@ -148,20 +148,20 @@ HasDescription returns a boolean if a field has been set.
### GetCreated
`func (o *LifecycleState) GetCreated() time.Time`
`func (o *LifecycleState) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *LifecycleState) GetCreatedOk() (*time.Time, bool)`
`func (o *LifecycleState) 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 *LifecycleState) SetCreated(v time.Time)`
`func (o *LifecycleState) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -173,20 +173,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *LifecycleState) GetModified() time.Time`
`func (o *LifecycleState) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *LifecycleState) GetModifiedOk() (*time.Time, bool)`
`func (o *LifecycleState) 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 *LifecycleState) SetModified(v time.Time)`
`func (o *LifecycleState) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -22,7 +22,7 @@ Name | Type | Description | Notes
**FormFields** | Pointer to [**[]WorkflowLibraryFormFields**](workflow-library-form-fields) | One or more inputs that the operator accepts | [optional]
**ExampleOutput** | Pointer to [**WorkflowLibraryActionExampleOutput**](workflow-library-action-example-output) | | [optional]
**Deprecated** | Pointer to **bool** | | [optional]
**DeprecatedBy** | Pointer to **time.Time** | | [optional]
**DeprecatedBy** | Pointer to **SailPointTime** | | [optional]
**VersionNumber** | Pointer to **int32** | Version number | [optional]
**IsSimulationEnabled** | Pointer to **bool** | | [optional]
**IsDynamicSchema** | Pointer to **bool** | Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields. | [optional]
@@ -235,20 +235,20 @@ HasDeprecated returns a boolean if a field has been set.
### GetDeprecatedBy
`func (o *ListCompleteWorkflowLibrary200ResponseInner) GetDeprecatedBy() time.Time`
`func (o *ListCompleteWorkflowLibrary200ResponseInner) GetDeprecatedBy() SailPointTime`
GetDeprecatedBy returns the DeprecatedBy field if non-nil, zero value otherwise.
### GetDeprecatedByOk
`func (o *ListCompleteWorkflowLibrary200ResponseInner) GetDeprecatedByOk() (*time.Time, bool)`
`func (o *ListCompleteWorkflowLibrary200ResponseInner) GetDeprecatedByOk() (*SailPointTime, bool)`
GetDeprecatedByOk returns a tuple with the DeprecatedBy field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDeprecatedBy
`func (o *ListCompleteWorkflowLibrary200ResponseInner) SetDeprecatedBy(v time.Time)`
`func (o *ListCompleteWorkflowLibrary200ResponseInner) SetDeprecatedBy(v SailPointTime)`
SetDeprecatedBy sets DeprecatedBy field to given value.

View File

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | The name of the aggregation process | [optional]
**Description** | Pointer to **string** | The description of the task | [optional]
**Launcher** | Pointer to **string** | The user who initiated the task | [optional]
**Created** | Pointer to **time.Time** | The Task creation date | [optional]
**Created** | Pointer to **SailPointTime** | The Task creation date | [optional]
**Launched** | Pointer to **NullableTime** | The task start date | [optional]
**Completed** | Pointer to **NullableTime** | The task completion date | [optional]
**CompletionStatus** | Pointer to **NullableString** | Task completion status. | [optional]
@@ -176,20 +176,20 @@ HasLauncher returns a boolean if a field has been set.
### GetCreated
`func (o *LoadAccountsTaskTask) GetCreated() time.Time`
`func (o *LoadAccountsTaskTask) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *LoadAccountsTaskTask) GetCreatedOk() (*time.Time, bool)`
`func (o *LoadAccountsTaskTask) 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 *LoadAccountsTaskTask) SetCreated(v time.Time)`
`func (o *LoadAccountsTaskTask) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -201,20 +201,20 @@ HasCreated returns a boolean if a field has been set.
### GetLaunched
`func (o *LoadAccountsTaskTask) GetLaunched() time.Time`
`func (o *LoadAccountsTaskTask) GetLaunched() SailPointTime`
GetLaunched returns the Launched field if non-nil, zero value otherwise.
### GetLaunchedOk
`func (o *LoadAccountsTaskTask) GetLaunchedOk() (*time.Time, bool)`
`func (o *LoadAccountsTaskTask) GetLaunchedOk() (*SailPointTime, bool)`
GetLaunchedOk returns a tuple with the Launched field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLaunched
`func (o *LoadAccountsTaskTask) SetLaunched(v time.Time)`
`func (o *LoadAccountsTaskTask) SetLaunched(v SailPointTime)`
SetLaunched sets Launched field to given value.
@@ -236,20 +236,20 @@ HasLaunched returns a boolean if a field has been set.
UnsetLaunched ensures that no value is present for Launched, not even an explicit nil
### GetCompleted
`func (o *LoadAccountsTaskTask) GetCompleted() time.Time`
`func (o *LoadAccountsTaskTask) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *LoadAccountsTaskTask) GetCompletedOk() (*time.Time, bool)`
`func (o *LoadAccountsTaskTask) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *LoadAccountsTaskTask) SetCompleted(v time.Time)`
`func (o *LoadAccountsTaskTask) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**UniqueName** | Pointer to **string** | The name of the task | [optional]
**Description** | Pointer to **string** | The description of the task | [optional]
**Launcher** | Pointer to **string** | The user who initiated the task | [optional]
**Created** | Pointer to **time.Time** | The creation date of the task | [optional]
**Created** | Pointer to **SailPointTime** | The creation date of the task | [optional]
**Returns** | Pointer to [**[]LoadEntitlementTaskReturnsInner**](load-entitlement-task-returns-inner) | Return values from the task | [optional]
## Methods
@@ -169,20 +169,20 @@ HasLauncher returns a boolean if a field has been set.
### GetCreated
`func (o *LoadEntitlementTask) GetCreated() time.Time`
`func (o *LoadEntitlementTask) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *LoadEntitlementTask) GetCreatedOk() (*time.Time, bool)`
`func (o *LoadEntitlementTask) 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 *LoadEntitlementTask) SetCreated(v time.Time)`
`func (o *LoadEntitlementTask) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | The name of uncorrelated accounts process | [optional]
**Description** | Pointer to **string** | The description of the task | [optional]
**Launcher** | Pointer to **string** | The user who initiated the task | [optional]
**Created** | Pointer to **time.Time** | The Task creation date | [optional]
**Created** | Pointer to **SailPointTime** | The Task creation date | [optional]
**Launched** | Pointer to **NullableTime** | The task start date | [optional]
**Completed** | Pointer to **NullableTime** | The task completion date | [optional]
**CompletionStatus** | Pointer to **NullableString** | Task completion status. | [optional]
@@ -176,20 +176,20 @@ HasLauncher returns a boolean if a field has been set.
### GetCreated
`func (o *LoadUncorrelatedAccountsTaskTask) GetCreated() time.Time`
`func (o *LoadUncorrelatedAccountsTaskTask) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *LoadUncorrelatedAccountsTaskTask) GetCreatedOk() (*time.Time, bool)`
`func (o *LoadUncorrelatedAccountsTaskTask) 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 *LoadUncorrelatedAccountsTaskTask) SetCreated(v time.Time)`
`func (o *LoadUncorrelatedAccountsTaskTask) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -201,20 +201,20 @@ HasCreated returns a boolean if a field has been set.
### GetLaunched
`func (o *LoadUncorrelatedAccountsTaskTask) GetLaunched() time.Time`
`func (o *LoadUncorrelatedAccountsTaskTask) GetLaunched() SailPointTime`
GetLaunched returns the Launched field if non-nil, zero value otherwise.
### GetLaunchedOk
`func (o *LoadUncorrelatedAccountsTaskTask) GetLaunchedOk() (*time.Time, bool)`
`func (o *LoadUncorrelatedAccountsTaskTask) GetLaunchedOk() (*SailPointTime, bool)`
GetLaunchedOk returns a tuple with the Launched field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLaunched
`func (o *LoadUncorrelatedAccountsTaskTask) SetLaunched(v time.Time)`
`func (o *LoadUncorrelatedAccountsTaskTask) SetLaunched(v SailPointTime)`
SetLaunched sets Launched field to given value.
@@ -236,20 +236,20 @@ HasLaunched returns a boolean if a field has been set.
UnsetLaunched ensures that no value is present for Launched, not even an explicit nil
### GetCompleted
`func (o *LoadUncorrelatedAccountsTaskTask) GetCompleted() time.Time`
`func (o *LoadUncorrelatedAccountsTaskTask) GetCompleted() SailPointTime`
GetCompleted returns the Completed field if non-nil, zero value otherwise.
### GetCompletedOk
`func (o *LoadUncorrelatedAccountsTaskTask) GetCompletedOk() (*time.Time, bool)`
`func (o *LoadUncorrelatedAccountsTaskTask) GetCompletedOk() (*SailPointTime, bool)`
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCompleted
`func (o *LoadUncorrelatedAccountsTaskTask) SetCompleted(v time.Time)`
`func (o *LoadUncorrelatedAccountsTaskTask) SetCompleted(v SailPointTime)`
SetCompleted sets Completed field to given value.

View File

@@ -24,7 +24,7 @@ Name | Type | Description | Notes
**Cookbook** | Pointer to **string** | VA cookbook | [optional] [readonly]
**Description** | **string** | ManagedClient description |
**IpAddress** | Pointer to **string** | The public IP address of the ManagedClient | [optional] [readonly]
**LastSeen** | Pointer to **time.Time** | When the ManagedClient was last seen by the server | [optional] [readonly]
**LastSeen** | Pointer to **SailPointTime** | When the ManagedClient was last seen by the server | [optional] [readonly]
**Name** | Pointer to **string** | ManagedClient name | [optional]
**SinceLastSeen** | Pointer to **string** | Milliseconds since the ManagedClient has polled the server | [optional] [readonly]
**Status** | Pointer to [**ManagedClientStatusEnum**](managed-client-status-enum) | Status of the ManagedClient | [optional] [readonly]
@@ -264,20 +264,20 @@ HasIpAddress returns a boolean if a field has been set.
### GetLastSeen
`func (o *ManagedClient) GetLastSeen() time.Time`
`func (o *ManagedClient) GetLastSeen() SailPointTime`
GetLastSeen returns the LastSeen field if non-nil, zero value otherwise.
### GetLastSeenOk
`func (o *ManagedClient) GetLastSeenOk() (*time.Time, bool)`
`func (o *ManagedClient) GetLastSeenOk() (*SailPointTime, bool)`
GetLastSeenOk returns a tuple with the LastSeen field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastSeen
`func (o *ManagedClient) SetLastSeen(v time.Time)`
`func (o *ManagedClient) SetLastSeen(v SailPointTime)`
SetLastSeen sets LastSeen field to given value.

View File

@@ -18,13 +18,13 @@ Name | Type | Description | Notes
**Body** | **map[string]interface{}** | ManagedClientStatus body information |
**Status** | [**ManagedClientStatusEnum**](managed-client-status-enum) | |
**Type** | [**NullableManagedClientType**](managed-client-type) | |
**Timestamp** | **time.Time** | timestamp on the Client Status update |
**Timestamp** | **SailPointTime** | timestamp on the Client Status update |
## Methods
### NewManagedClientStatus
`func NewManagedClientStatus(body map[string]interface{}, status ManagedClientStatusEnum, type_ NullableManagedClientType, timestamp time.Time, ) *ManagedClientStatus`
`func NewManagedClientStatus(body map[string]interface{}, status ManagedClientStatusEnum, type_ NullableManagedClientType, timestamp SailPointTime, ) *ManagedClientStatus`
NewManagedClientStatus instantiates a new ManagedClientStatus object
This constructor will assign default values to properties that have it defined,
@@ -111,20 +111,20 @@ SetType sets Type field to given value.
UnsetType ensures that no value is present for Type, not even an explicit nil
### GetTimestamp
`func (o *ManagedClientStatus) GetTimestamp() time.Time`
`func (o *ManagedClientStatus) GetTimestamp() SailPointTime`
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
### GetTimestampOk
`func (o *ManagedClientStatus) GetTimestampOk() (*time.Time, bool)`
`func (o *ManagedClientStatus) GetTimestampOk() (*SailPointTime, bool)`
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTimestamp
`func (o *ManagedClientStatus) SetTimestamp(v time.Time)`
`func (o *ManagedClientStatus) SetTimestamp(v SailPointTime)`
SetTimestamp sets Timestamp field to given value.

View File

@@ -18,13 +18,13 @@ Name | Type | Description | Notes
**Body** | **map[string]interface{}** | ManagedClientStatus body information |
**Status** | [**ManagedClientStatusEnum**](managed-client-status-enum) | |
**Type** | [**NullableManagedClientType**](managed-client-type) | |
**Timestamp** | **time.Time** | timestamp on the Client Status update |
**Timestamp** | **SailPointTime** | timestamp on the Client Status update |
## Methods
### NewManagedClientStatusAggResponse
`func NewManagedClientStatusAggResponse(body map[string]interface{}, status ManagedClientStatusEnum, type_ NullableManagedClientType, timestamp time.Time, ) *ManagedClientStatusAggResponse`
`func NewManagedClientStatusAggResponse(body map[string]interface{}, status ManagedClientStatusEnum, type_ NullableManagedClientType, timestamp SailPointTime, ) *ManagedClientStatusAggResponse`
NewManagedClientStatusAggResponse instantiates a new ManagedClientStatusAggResponse object
This constructor will assign default values to properties that have it defined,
@@ -111,20 +111,20 @@ SetType sets Type field to given value.
UnsetType ensures that no value is present for Type, not even an explicit nil
### GetTimestamp
`func (o *ManagedClientStatusAggResponse) GetTimestamp() time.Time`
`func (o *ManagedClientStatusAggResponse) GetTimestamp() SailPointTime`
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
### GetTimestampOk
`func (o *ManagedClientStatusAggResponse) GetTimestampOk() (*time.Time, bool)`
`func (o *ManagedClientStatusAggResponse) GetTimestampOk() (*SailPointTime, bool)`
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTimestamp
`func (o *ManagedClientStatusAggResponse) SetTimestamp(v time.Time)`
`func (o *ManagedClientStatusAggResponse) SetTimestamp(v SailPointTime)`
SetTimestamp sets Timestamp field to given value.

View File

@@ -672,20 +672,20 @@ HasCcId returns a boolean if a field has been set.
### GetCreatedAt
`func (o *ManagedCluster) GetCreatedAt() time.Time`
`func (o *ManagedCluster) GetCreatedAt() SailPointTime`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *ManagedCluster) GetCreatedAtOk() (*time.Time, bool)`
`func (o *ManagedCluster) GetCreatedAtOk() (*SailPointTime, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *ManagedCluster) SetCreatedAt(v time.Time)`
`func (o *ManagedCluster) SetCreatedAt(v SailPointTime)`
SetCreatedAt sets CreatedAt field to given value.
@@ -707,20 +707,20 @@ HasCreatedAt returns a boolean if a field has been set.
UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil
### GetUpdatedAt
`func (o *ManagedCluster) GetUpdatedAt() time.Time`
`func (o *ManagedCluster) GetUpdatedAt() SailPointTime`
GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.
### GetUpdatedAtOk
`func (o *ManagedCluster) GetUpdatedAtOk() (*time.Time, bool)`
`func (o *ManagedCluster) GetUpdatedAtOk() (*SailPointTime, bool)`
GetUpdatedAtOk returns a tuple with the UpdatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUpdatedAt
`func (o *ManagedCluster) SetUpdatedAt(v time.Time)`
`func (o *ManagedCluster) SetUpdatedAt(v SailPointTime)`
SetUpdatedAt sets UpdatedAt field to given value.

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**Forwarded** | Pointer to **bool** | True if the request for this item was forwarded from one owner to another. | [optional] [default to false]
**OriginalOwner** | Pointer to [**NullableManualWorkItemDetailsOriginalOwner**](manual-work-item-details-original-owner) | | [optional]
**CurrentOwner** | Pointer to [**NullableManualWorkItemDetailsCurrentOwner**](manual-work-item-details-current-owner) | | [optional]
**Modified** | Pointer to **time.Time** | Time at which item was modified. | [optional]
**Modified** | Pointer to **SailPointTime** | Time at which item was modified. | [optional]
**Status** | Pointer to [**ManualWorkItemState**](manual-work-item-state) | | [optional]
**ForwardHistory** | Pointer to [**[]ApprovalForwardHistory**](approval-forward-history) | The history of approval forward action. | [optional]
@@ -138,20 +138,20 @@ HasCurrentOwner returns a boolean if a field has been set.
UnsetCurrentOwner ensures that no value is present for CurrentOwner, not even an explicit nil
### GetModified
`func (o *ManualWorkItemDetails) GetModified() time.Time`
`func (o *ManualWorkItemDetails) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *ManualWorkItemDetails) GetModifiedOk() (*time.Time, bool)`
`func (o *ManualWorkItemDetails) 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 *ManualWorkItemDetails) SetModified(v time.Time)`
`func (o *ManualWorkItemDetails) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -31,13 +31,13 @@ Name | Type | Description | Notes
**ManagementWorkgroup** | Pointer to [**NullableMultiHostIntegrationsManagementWorkgroup**](multi-host-integrations-management-workgroup) | | [optional]
**Healthy** | Pointer to **bool** | When this is true, it indicates that the source is healthy. | [optional] [default to false]
**Status** | Pointer to **string** | Status identifier that gives specific information about why a source is or isn't healthy. | [optional]
**Since** | Pointer to **time.Time** | Timestamp that shows when a source health check was last performed. | [optional]
**Since** | Pointer to **SailPointTime** | Timestamp that shows when a source health check was last performed. | [optional]
**ConnectorId** | Pointer to **string** | Connector ID | [optional]
**ConnectorName** | Pointer to **string** | Name of the connector that was chosen during source creation. | [optional]
**ConnectionType** | Pointer to **string** | Type of connection (direct or file). | [optional]
**ConnectorImplementationId** | Pointer to **string** | Connector implementation ID. | [optional]
**Created** | Pointer to **time.Time** | Date-time when the source was created | [optional]
**Modified** | Pointer to **time.Time** | Date-time when the source was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | Date-time when the source was created | [optional]
**Modified** | Pointer to **SailPointTime** | Date-time when the source was last modified. | [optional]
**CredentialProviderEnabled** | Pointer to **bool** | If this is true, it enables a credential provider for the source. If credentialProvider is turned on, then the source can use credential provider(s) to fetch credentials. | [optional] [default to false]
**Category** | Pointer to **NullableString** | Source category (e.g. null, CredentialProvider). | [optional]
@@ -457,20 +457,20 @@ HasStatus returns a boolean if a field has been set.
### GetSince
`func (o *MultiHostIntegrations) GetSince() time.Time`
`func (o *MultiHostIntegrations) GetSince() SailPointTime`
GetSince returns the Since field if non-nil, zero value otherwise.
### GetSinceOk
`func (o *MultiHostIntegrations) GetSinceOk() (*time.Time, bool)`
`func (o *MultiHostIntegrations) GetSinceOk() (*SailPointTime, bool)`
GetSinceOk returns a tuple with the Since field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSince
`func (o *MultiHostIntegrations) SetSince(v time.Time)`
`func (o *MultiHostIntegrations) SetSince(v SailPointTime)`
SetSince sets Since field to given value.
@@ -582,20 +582,20 @@ HasConnectorImplementationId returns a boolean if a field has been set.
### GetCreated
`func (o *MultiHostIntegrations) GetCreated() time.Time`
`func (o *MultiHostIntegrations) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *MultiHostIntegrations) GetCreatedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrations) 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 *MultiHostIntegrations) SetCreated(v time.Time)`
`func (o *MultiHostIntegrations) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -607,20 +607,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *MultiHostIntegrations) GetModified() time.Time`
`func (o *MultiHostIntegrations) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *MultiHostIntegrations) GetModifiedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrations) 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 *MultiHostIntegrations) SetModified(v time.Time)`
`func (o *MultiHostIntegrations) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**AggregationCronSchedule** | **string** | Cron expression to schedule aggregation |
**EnableSchedule** | **bool** | Boolean value for Multi-Host Integration aggregation schedule. This specifies if scheduled aggregation is enabled or disabled. | [default to false]
**SourceIdList** | **[]string** | Source IDs of the Multi-Host Integration |
**Created** | Pointer to **time.Time** | Created date of Multi-Host Integration aggregation schedule | [optional]
**Modified** | Pointer to **time.Time** | Modified date of Multi-Host Integration aggregation schedule | [optional]
**Created** | Pointer to **SailPointTime** | Created date of Multi-Host Integration aggregation schedule | [optional]
**Modified** | Pointer to **SailPointTime** | Modified date of Multi-Host Integration aggregation schedule | [optional]
## Methods
@@ -165,20 +165,20 @@ SetSourceIdList sets SourceIdList field to given value.
### GetCreated
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetCreated() time.Time`
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetCreatedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrationsAggScheduleUpdate) 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 *MultiHostIntegrationsAggScheduleUpdate) SetCreated(v time.Time)`
`func (o *MultiHostIntegrationsAggScheduleUpdate) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -190,20 +190,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetModified() time.Time`
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *MultiHostIntegrationsAggScheduleUpdate) GetModifiedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrationsAggScheduleUpdate) 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 *MultiHostIntegrationsAggScheduleUpdate) SetModified(v time.Time)`
`func (o *MultiHostIntegrationsAggScheduleUpdate) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -22,8 +22,8 @@ Name | Type | Description | Notes
**Connector** | **string** | Connector script name. |
**ConnectorAttributes** | Pointer to **map[string]interface{}** | Multi-Host Integration specific configuration. User can add any number of additional attributes. e.g. maxSourcesPerAggGroup, maxAllowedSources etc. | [optional]
**ManagementWorkgroup** | Pointer to [**NullableMultiHostIntegrationsManagementWorkgroup**](multi-host-integrations-management-workgroup) | | [optional]
**Created** | Pointer to **time.Time** | Date-time when the source was created | [optional]
**Modified** | Pointer to **time.Time** | Date-time when the source was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | Date-time when the source was created | [optional]
**Modified** | Pointer to **SailPointTime** | Date-time when the source was last modified. | [optional]
## Methods
@@ -221,20 +221,20 @@ HasManagementWorkgroup returns a boolean if a field has been set.
UnsetManagementWorkgroup ensures that no value is present for ManagementWorkgroup, not even an explicit nil
### GetCreated
`func (o *MultiHostIntegrationsCreate) GetCreated() time.Time`
`func (o *MultiHostIntegrationsCreate) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *MultiHostIntegrationsCreate) GetCreatedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrationsCreate) 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 *MultiHostIntegrationsCreate) SetCreated(v time.Time)`
`func (o *MultiHostIntegrationsCreate) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -246,20 +246,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *MultiHostIntegrationsCreate) GetModified() time.Time`
`func (o *MultiHostIntegrationsCreate) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *MultiHostIntegrationsCreate) GetModifiedOk() (*time.Time, bool)`
`func (o *MultiHostIntegrationsCreate) 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 *MultiHostIntegrationsCreate) SetModified(v time.Time)`
`func (o *MultiHostIntegrationsCreate) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -37,13 +37,13 @@ Name | Type | Description | Notes
**ManagementWorkgroup** | Pointer to [**NullableMultiHostIntegrationsManagementWorkgroup**](multi-host-integrations-management-workgroup) | | [optional]
**Healthy** | Pointer to **bool** | When this is true, it indicates that the source is healthy. | [optional] [default to false]
**Status** | Pointer to **string** | Status identifier that gives specific information about why a source is or isn't healthy. | [optional]
**Since** | Pointer to **time.Time** | Timestamp that shows when a source health check was last performed. | [optional]
**Since** | Pointer to **SailPointTime** | Timestamp that shows when a source health check was last performed. | [optional]
**ConnectorId** | Pointer to **string** | Connector ID | [optional]
**ConnectorName** | **string** | Name of the connector that was chosen during source creation. |
**ConnectionType** | Pointer to **string** | Type of connection (direct or file). | [optional]
**ConnectorImplementationId** | Pointer to **string** | Connector implementation ID. | [optional]
**Created** | Pointer to **time.Time** | Date-time when the source was created | [optional]
**Modified** | Pointer to **time.Time** | Date-time when the source was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | Date-time when the source was created | [optional]
**Modified** | Pointer to **SailPointTime** | Date-time when the source was last modified. | [optional]
**CredentialProviderEnabled** | Pointer to **bool** | If this is true, it enables a credential provider for the source. If credentialProvider is turned on, then the source can use credential provider(s) to fetch credentials. | [optional] [default to false]
**Category** | Pointer to **NullableString** | Source category (e.g. null, CredentialProvider). | [optional]
@@ -678,20 +678,20 @@ HasStatus returns a boolean if a field has been set.
### GetSince
`func (o *MultiHostSources) GetSince() time.Time`
`func (o *MultiHostSources) GetSince() SailPointTime`
GetSince returns the Since field if non-nil, zero value otherwise.
### GetSinceOk
`func (o *MultiHostSources) GetSinceOk() (*time.Time, bool)`
`func (o *MultiHostSources) GetSinceOk() (*SailPointTime, bool)`
GetSinceOk returns a tuple with the Since field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSince
`func (o *MultiHostSources) SetSince(v time.Time)`
`func (o *MultiHostSources) SetSince(v SailPointTime)`
SetSince sets Since field to given value.
@@ -798,20 +798,20 @@ HasConnectorImplementationId returns a boolean if a field has been set.
### GetCreated
`func (o *MultiHostSources) GetCreated() time.Time`
`func (o *MultiHostSources) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *MultiHostSources) GetCreatedOk() (*time.Time, bool)`
`func (o *MultiHostSources) 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 *MultiHostSources) SetCreated(v time.Time)`
`func (o *MultiHostSources) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -823,20 +823,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *MultiHostSources) GetModified() time.Time`
`func (o *MultiHostSources) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *MultiHostSources) GetModifiedOk() (*time.Time, bool)`
`func (o *MultiHostSources) 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 *MultiHostSources) SetModified(v time.Time)`
`func (o *MultiHostSources) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**ApprovalStatus** | Pointer to [**ApprovalStatus**](approval-status) | | [optional]
**ApprovalOrder** | Pointer to **float32** | Approval order | [optional]
**Comment** | Pointer to **string** | comment of approver | [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]
**NonEmployeeRequest** | Pointer to [**NonEmployeeRequestLite**](non-employee-request-lite) | | [optional]
## Methods
@@ -196,20 +196,20 @@ HasComment returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeApprovalItem) GetModified() time.Time`
`func (o *NonEmployeeApprovalItem) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeApprovalItem) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItem) 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 *NonEmployeeApprovalItem) SetModified(v time.Time)`
`func (o *NonEmployeeApprovalItem) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -221,20 +221,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeApprovalItem) GetCreated() time.Time`
`func (o *NonEmployeeApprovalItem) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeApprovalItem) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItem) 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 *NonEmployeeApprovalItem) SetCreated(v time.Time)`
`func (o *NonEmployeeApprovalItem) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**ApprovalStatus** | Pointer to [**ApprovalStatus**](approval-status) | | [optional]
**ApprovalOrder** | Pointer to **float32** | Approval order | [optional]
**Comment** | Pointer to **string** | comment of approver | [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
@@ -195,20 +195,20 @@ HasComment returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeApprovalItemBase) GetModified() time.Time`
`func (o *NonEmployeeApprovalItemBase) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeApprovalItemBase) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItemBase) 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 *NonEmployeeApprovalItemBase) SetModified(v time.Time)`
`func (o *NonEmployeeApprovalItemBase) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -220,20 +220,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeApprovalItemBase) GetCreated() time.Time`
`func (o *NonEmployeeApprovalItemBase) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeApprovalItemBase) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItemBase) 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 *NonEmployeeApprovalItemBase) SetCreated(v time.Time)`
`func (o *NonEmployeeApprovalItemBase) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**ApprovalStatus** | Pointer to [**ApprovalStatus**](approval-status) | | [optional]
**ApprovalOrder** | Pointer to **float32** | Approval order | [optional]
**Comment** | Pointer to **string** | comment of approver | [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]
**NonEmployeeRequest** | Pointer to [**NonEmployeeRequestWithoutApprovalItem**](non-employee-request-without-approval-item) | | [optional]
## Methods
@@ -196,20 +196,20 @@ HasComment returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeApprovalItemDetail) GetModified() time.Time`
`func (o *NonEmployeeApprovalItemDetail) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeApprovalItemDetail) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItemDetail) 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 *NonEmployeeApprovalItemDetail) SetModified(v time.Time)`
`func (o *NonEmployeeApprovalItemDetail) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -221,20 +221,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeApprovalItemDetail) GetCreated() time.Time`
`func (o *NonEmployeeApprovalItemDetail) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeApprovalItemDetail) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeApprovalItemDetail) 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 *NonEmployeeApprovalItemDetail) SetCreated(v time.Time)`
`func (o *NonEmployeeApprovalItemDetail) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The bulk upload job's ID. (UUID) | [optional]
**SourceId** | Pointer to **string** | The ID of the source to bulk-upload non-employees to. (UUID) | [optional]
**Created** | Pointer to **time.Time** | The date-time the job was submitted. | [optional]
**Modified** | Pointer to **time.Time** | The date-time that the job was last updated. | [optional]
**Created** | Pointer to **SailPointTime** | The date-time the job was submitted. | [optional]
**Modified** | Pointer to **SailPointTime** | The date-time that the job was last updated. | [optional]
**Status** | Pointer to **string** | Returns the following values indicating the progress or result of the bulk upload job. \"PENDING\" means the job is queued and waiting to be processed. \"IN_PROGRESS\" means the job is currently being processed. \"COMPLETED\" means the job has been completed without any errors. \"ERROR\" means the job failed to process with errors. | [optional]
## Methods
@@ -92,20 +92,20 @@ HasSourceId returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeBulkUploadJob) GetCreated() time.Time`
`func (o *NonEmployeeBulkUploadJob) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeBulkUploadJob) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeBulkUploadJob) 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 *NonEmployeeBulkUploadJob) SetCreated(v time.Time)`
`func (o *NonEmployeeBulkUploadJob) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -117,20 +117,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeBulkUploadJob) GetModified() time.Time`
`func (o *NonEmployeeBulkUploadJob) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeBulkUploadJob) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeBulkUploadJob) 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 *NonEmployeeBulkUploadJob) SetModified(v time.Time)`
`func (o *NonEmployeeBulkUploadJob) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -24,10 +24,10 @@ Name | Type | Description | Notes
**Manager** | Pointer to **string** | The account ID of a valid identity to serve as this non-employee's manager. | [optional]
**SourceId** | Pointer to **string** | Non-Employee's source id. | [optional]
**Data** | Pointer to **map[string]string** | Additional attributes for a non-employee. Up to 10 custom attributes can be added. | [optional]
**StartDate** | Pointer to **time.Time** | Non-Employee employment start date. | [optional]
**EndDate** | Pointer to **time.Time** | 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]
**StartDate** | Pointer to **SailPointTime** | Non-Employee employment start date. | [optional]
**EndDate** | Pointer to **SailPointTime** | Non-Employee employment end date. | [optional]
**Modified** | Pointer to **SailPointTime** | When the request was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | When the request was created. | [optional]
## Methods
@@ -275,20 +275,20 @@ HasData returns a boolean if a field has been set.
### GetStartDate
`func (o *NonEmployeeRecord) GetStartDate() time.Time`
`func (o *NonEmployeeRecord) GetStartDate() SailPointTime`
GetStartDate returns the StartDate field if non-nil, zero value otherwise.
### GetStartDateOk
`func (o *NonEmployeeRecord) GetStartDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRecord) GetStartDateOk() (*SailPointTime, bool)`
GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStartDate
`func (o *NonEmployeeRecord) SetStartDate(v time.Time)`
`func (o *NonEmployeeRecord) SetStartDate(v SailPointTime)`
SetStartDate sets StartDate field to given value.
@@ -300,20 +300,20 @@ HasStartDate returns a boolean if a field has been set.
### GetEndDate
`func (o *NonEmployeeRecord) GetEndDate() time.Time`
`func (o *NonEmployeeRecord) GetEndDate() SailPointTime`
GetEndDate returns the EndDate field if non-nil, zero value otherwise.
### GetEndDateOk
`func (o *NonEmployeeRecord) GetEndDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRecord) GetEndDateOk() (*SailPointTime, bool)`
GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEndDate
`func (o *NonEmployeeRecord) SetEndDate(v time.Time)`
`func (o *NonEmployeeRecord) SetEndDate(v SailPointTime)`
SetEndDate sets EndDate field to given value.
@@ -325,20 +325,20 @@ HasEndDate returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeRecord) GetModified() time.Time`
`func (o *NonEmployeeRecord) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeRecord) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeRecord) 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 *NonEmployeeRecord) SetModified(v time.Time)`
`func (o *NonEmployeeRecord) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -350,20 +350,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeRecord) GetCreated() time.Time`
`func (o *NonEmployeeRecord) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeRecord) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeRecord) 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 *NonEmployeeRecord) SetCreated(v time.Time)`
`func (o *NonEmployeeRecord) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -30,11 +30,11 @@ Name | Type | Description | Notes
**ApprovalItems** | Pointer to [**[]NonEmployeeApprovalItemBase**](non-employee-approval-item-base) | List of approval item for the request | [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]
**StartDate** | Pointer to **time.Time** | Non-Employee employment start date. | [optional]
**EndDate** | Pointer to **time.Time** | 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]
**CompletionDate** | Pointer to **SailPointTime** | When the request was completely approved. | [optional]
**StartDate** | Pointer to **SailPointTime** | Non-Employee employment start date. | [optional]
**EndDate** | Pointer to **SailPointTime** | Non-Employee employment end date. | [optional]
**Modified** | Pointer to **SailPointTime** | When the request was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | When the request was created. | [optional]
## Methods
@@ -432,20 +432,20 @@ HasComment returns a boolean if a field has been set.
### GetCompletionDate
`func (o *NonEmployeeRequest) GetCompletionDate() time.Time`
`func (o *NonEmployeeRequest) GetCompletionDate() SailPointTime`
GetCompletionDate returns the CompletionDate field if non-nil, zero value otherwise.
### GetCompletionDateOk
`func (o *NonEmployeeRequest) GetCompletionDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequest) 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 *NonEmployeeRequest) SetCompletionDate(v time.Time)`
`func (o *NonEmployeeRequest) SetCompletionDate(v SailPointTime)`
SetCompletionDate sets CompletionDate field to given value.
@@ -457,20 +457,20 @@ HasCompletionDate returns a boolean if a field has been set.
### GetStartDate
`func (o *NonEmployeeRequest) GetStartDate() time.Time`
`func (o *NonEmployeeRequest) GetStartDate() SailPointTime`
GetStartDate returns the StartDate field if non-nil, zero value otherwise.
### GetStartDateOk
`func (o *NonEmployeeRequest) GetStartDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequest) GetStartDateOk() (*SailPointTime, bool)`
GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStartDate
`func (o *NonEmployeeRequest) SetStartDate(v time.Time)`
`func (o *NonEmployeeRequest) SetStartDate(v SailPointTime)`
SetStartDate sets StartDate field to given value.
@@ -482,20 +482,20 @@ HasStartDate returns a boolean if a field has been set.
### GetEndDate
`func (o *NonEmployeeRequest) GetEndDate() time.Time`
`func (o *NonEmployeeRequest) GetEndDate() SailPointTime`
GetEndDate returns the EndDate field if non-nil, zero value otherwise.
### GetEndDateOk
`func (o *NonEmployeeRequest) GetEndDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequest) GetEndDateOk() (*SailPointTime, bool)`
GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEndDate
`func (o *NonEmployeeRequest) SetEndDate(v time.Time)`
`func (o *NonEmployeeRequest) SetEndDate(v SailPointTime)`
SetEndDate sets EndDate field to given value.
@@ -507,20 +507,20 @@ HasEndDate returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeRequest) GetModified() time.Time`
`func (o *NonEmployeeRequest) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeRequest) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeRequest) 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 *NonEmployeeRequest) SetModified(v time.Time)`
`func (o *NonEmployeeRequest) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -532,20 +532,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeRequest) GetCreated() time.Time`
`func (o *NonEmployeeRequest) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeRequest) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeRequest) 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 *NonEmployeeRequest) SetCreated(v time.Time)`
`func (o *NonEmployeeRequest) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -23,14 +23,14 @@ Name | Type | Description | Notes
**Manager** | **string** | The account ID of a valid identity to serve as this non-employee's manager. |
**SourceId** | **string** | Non-Employee's source id. |
**Data** | Pointer to **map[string]string** | Additional attributes for a non-employee. Up to 10 custom attributes can be added. | [optional]
**StartDate** | **time.Time** | Non-Employee employment start date. |
**EndDate** | **time.Time** | Non-Employee employment end date. |
**StartDate** | **SailPointTime** | Non-Employee employment start date. |
**EndDate** | **SailPointTime** | Non-Employee employment end date. |
## Methods
### NewNonEmployeeRequestBody
`func NewNonEmployeeRequestBody(accountName string, firstName string, lastName string, email string, phone string, manager string, sourceId string, startDate time.Time, endDate time.Time, ) *NonEmployeeRequestBody`
`func NewNonEmployeeRequestBody(accountName string, firstName string, lastName string, email string, phone string, manager string, sourceId string, startDate SailPointTime, endDate SailPointTime, ) *NonEmployeeRequestBody`
NewNonEmployeeRequestBody instantiates a new NonEmployeeRequestBody object
This constructor will assign default values to properties that have it defined,
@@ -212,40 +212,40 @@ HasData returns a boolean if a field has been set.
### GetStartDate
`func (o *NonEmployeeRequestBody) GetStartDate() time.Time`
`func (o *NonEmployeeRequestBody) GetStartDate() SailPointTime`
GetStartDate returns the StartDate field if non-nil, zero value otherwise.
### GetStartDateOk
`func (o *NonEmployeeRequestBody) GetStartDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequestBody) GetStartDateOk() (*SailPointTime, bool)`
GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStartDate
`func (o *NonEmployeeRequestBody) SetStartDate(v time.Time)`
`func (o *NonEmployeeRequestBody) SetStartDate(v SailPointTime)`
SetStartDate sets StartDate field to given value.
### GetEndDate
`func (o *NonEmployeeRequestBody) GetEndDate() time.Time`
`func (o *NonEmployeeRequestBody) GetEndDate() SailPointTime`
GetEndDate returns the EndDate field if non-nil, zero value otherwise.
### GetEndDateOk
`func (o *NonEmployeeRequestBody) GetEndDateOk() (*time.Time, bool)`
`func (o *NonEmployeeRequestBody) GetEndDateOk() (*SailPointTime, bool)`
GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEndDate
`func (o *NonEmployeeRequestBody) SetEndDate(v time.Time)`
`func (o *NonEmployeeRequestBody) SetEndDate(v SailPointTime)`
SetEndDate sets EndDate field to given value.

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.

View File

@@ -17,8 +17,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | Schema Attribute Id | [optional]
**System** | Pointer to **bool** | True if this schema attribute is mandatory on all non-employees sources. | [optional] [default to false]
**Modified** | Pointer to **time.Time** | When the schema attribute was last modified. | [optional]
**Created** | Pointer to **time.Time** | When the schema attribute was created. | [optional]
**Modified** | Pointer to **SailPointTime** | When the schema attribute was last modified. | [optional]
**Created** | Pointer to **SailPointTime** | When the schema attribute was created. | [optional]
**Type** | [**NonEmployeeSchemaAttributeType**](non-employee-schema-attribute-type) | |
**Label** | **string** | Label displayed on the UI for this schema attribute. |
**TechnicalName** | **string** | The technical name of the attribute. Must be unique per source. |
@@ -97,20 +97,20 @@ HasSystem returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeSchemaAttribute) GetModified() time.Time`
`func (o *NonEmployeeSchemaAttribute) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeSchemaAttribute) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeSchemaAttribute) 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 *NonEmployeeSchemaAttribute) SetModified(v time.Time)`
`func (o *NonEmployeeSchemaAttribute) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -122,20 +122,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeSchemaAttribute) GetCreated() time.Time`
`func (o *NonEmployeeSchemaAttribute) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeSchemaAttribute) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeSchemaAttribute) 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 *NonEmployeeSchemaAttribute) SetCreated(v time.Time)`
`func (o *NonEmployeeSchemaAttribute) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**Description** | Pointer to **string** | Source description associated with this non-employee source. | [optional]
**Approvers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of approvers | [optional]
**AccountManagers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of account managers | [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]
**NonEmployeeCount** | Pointer to **NullableInt32** | The number of non-employee records on all sources that *requested-for* user manages. | [optional]
## Methods
@@ -196,20 +196,20 @@ HasAccountManagers returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeSource) GetModified() time.Time`
`func (o *NonEmployeeSource) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeSource) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeSource) 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 *NonEmployeeSource) SetModified(v time.Time)`
`func (o *NonEmployeeSource) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -221,20 +221,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeSource) GetCreated() time.Time`
`func (o *NonEmployeeSource) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeSource) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeSource) 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 *NonEmployeeSource) SetCreated(v time.Time)`
`func (o *NonEmployeeSource) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**Description** | Pointer to **string** | Source description associated with this non-employee source. | [optional]
**Approvers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of approvers | [optional]
**AccountManagers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of account managers | [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]
**NonEmployeeCount** | Pointer to **NullableInt32** | The number of non-employee records on all sources that *requested-for* user manages. | [optional]
**CloudExternalId** | Pointer to **string** | Legacy ID used for sources from the V1 API. This attribute will be removed from a future version of the API and will not be considered a breaking change. No clients should rely on this ID always being present. | [optional]
@@ -197,20 +197,20 @@ HasAccountManagers returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeSourceWithCloudExternalId) GetModified() time.Time`
`func (o *NonEmployeeSourceWithCloudExternalId) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeSourceWithCloudExternalId) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeSourceWithCloudExternalId) 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 *NonEmployeeSourceWithCloudExternalId) SetModified(v time.Time)`
`func (o *NonEmployeeSourceWithCloudExternalId) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -222,20 +222,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeSourceWithCloudExternalId) GetCreated() time.Time`
`func (o *NonEmployeeSourceWithCloudExternalId) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeSourceWithCloudExternalId) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeSourceWithCloudExternalId) 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 *NonEmployeeSourceWithCloudExternalId) SetCreated(v time.Time)`
`func (o *NonEmployeeSourceWithCloudExternalId) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -21,8 +21,8 @@ Name | Type | Description | Notes
**Description** | Pointer to **string** | Source description associated with this non-employee source. | [optional]
**Approvers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of approvers | [optional]
**AccountManagers** | Pointer to [**[]IdentityReferenceWithId**](identity-reference-with-id) | List of account managers | [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]
**NonEmployeeCount** | Pointer to **int32** | Number of non-employee records associated with this source. This value is 'null' by default. To get the non-employee count, you must set the `non-employee-count` flag in your request to 'true'. | [optional]
## Methods
@@ -196,20 +196,20 @@ HasAccountManagers returns a boolean if a field has been set.
### GetModified
`func (o *NonEmployeeSourceWithNECount) GetModified() time.Time`
`func (o *NonEmployeeSourceWithNECount) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NonEmployeeSourceWithNECount) GetModifiedOk() (*time.Time, bool)`
`func (o *NonEmployeeSourceWithNECount) 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 *NonEmployeeSourceWithNECount) SetModified(v time.Time)`
`func (o *NonEmployeeSourceWithNECount) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -221,20 +221,20 @@ HasModified returns a boolean if a field has been set.
### GetCreated
`func (o *NonEmployeeSourceWithNECount) GetCreated() time.Time`
`func (o *NonEmployeeSourceWithNECount) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NonEmployeeSourceWithNECount) GetCreatedOk() (*time.Time, bool)`
`func (o *NonEmployeeSourceWithNECount) 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 *NonEmployeeSourceWithNECount) SetCreated(v time.Time)`
`func (o *NonEmployeeSourceWithNECount) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.

View File

@@ -16,8 +16,8 @@ tags: ['SDK', 'Software Development Kit', 'NotificationTemplateContext', 'BetaNo
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Attributes** | Pointer to **map[string]interface{}** | A JSON object that stores the context. | [optional]
**Created** | Pointer to **time.Time** | When the global context was created | [optional]
**Modified** | Pointer to **time.Time** | When the global context was last modified | [optional]
**Created** | Pointer to **SailPointTime** | When the global context was created | [optional]
**Modified** | Pointer to **SailPointTime** | When the global context was last modified | [optional]
## Methods
@@ -65,20 +65,20 @@ HasAttributes returns a boolean if a field has been set.
### GetCreated
`func (o *NotificationTemplateContext) GetCreated() time.Time`
`func (o *NotificationTemplateContext) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *NotificationTemplateContext) GetCreatedOk() (*time.Time, bool)`
`func (o *NotificationTemplateContext) 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 *NotificationTemplateContext) SetCreated(v time.Time)`
`func (o *NotificationTemplateContext) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -90,20 +90,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *NotificationTemplateContext) GetModified() time.Time`
`func (o *NotificationTemplateContext) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *NotificationTemplateContext) GetModifiedOk() (*time.Time, bool)`
`func (o *NotificationTemplateContext) 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 *NotificationTemplateContext) SetModified(v time.Time)`
`func (o *NotificationTemplateContext) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -18,8 +18,8 @@ Name | Type | Description | Notes
**Id** | Pointer to **string** | The identity's unique identifier for the outlier record | [optional]
**IdentityId** | Pointer to **string** | The ID of the identity that is detected as an outlier | [optional]
**Type** | Pointer to **string** | The type of outlier summary | [optional]
**FirstDetectionDate** | Pointer to **time.Time** | The first date the outlier was detected | [optional]
**LatestDetectionDate** | Pointer to **time.Time** | The most recent date the outlier was detected | [optional]
**FirstDetectionDate** | Pointer to **SailPointTime** | The first date the outlier was detected | [optional]
**LatestDetectionDate** | Pointer to **SailPointTime** | The most recent date the outlier was detected | [optional]
**Ignored** | Pointer to **bool** | Flag whether or not the outlier has been ignored | [optional]
**Attributes** | Pointer to **map[string]interface{}** | Object containing mapped identity attributes | [optional]
**Score** | Pointer to **float32** | The outlier score determined by the detection engine ranging from 0..1 | [optional]
@@ -123,20 +123,20 @@ HasType returns a boolean if a field has been set.
### GetFirstDetectionDate
`func (o *Outlier) GetFirstDetectionDate() time.Time`
`func (o *Outlier) GetFirstDetectionDate() SailPointTime`
GetFirstDetectionDate returns the FirstDetectionDate field if non-nil, zero value otherwise.
### GetFirstDetectionDateOk
`func (o *Outlier) GetFirstDetectionDateOk() (*time.Time, bool)`
`func (o *Outlier) GetFirstDetectionDateOk() (*SailPointTime, bool)`
GetFirstDetectionDateOk returns a tuple with the FirstDetectionDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFirstDetectionDate
`func (o *Outlier) SetFirstDetectionDate(v time.Time)`
`func (o *Outlier) SetFirstDetectionDate(v SailPointTime)`
SetFirstDetectionDate sets FirstDetectionDate field to given value.
@@ -148,20 +148,20 @@ HasFirstDetectionDate returns a boolean if a field has been set.
### GetLatestDetectionDate
`func (o *Outlier) GetLatestDetectionDate() time.Time`
`func (o *Outlier) GetLatestDetectionDate() SailPointTime`
GetLatestDetectionDate returns the LatestDetectionDate field if non-nil, zero value otherwise.
### GetLatestDetectionDateOk
`func (o *Outlier) GetLatestDetectionDateOk() (*time.Time, bool)`
`func (o *Outlier) GetLatestDetectionDateOk() (*SailPointTime, bool)`
GetLatestDetectionDateOk returns a tuple with the LatestDetectionDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLatestDetectionDate
`func (o *Outlier) SetLatestDetectionDate(v time.Time)`
`func (o *Outlier) SetLatestDetectionDate(v SailPointTime)`
SetLatestDetectionDate sets LatestDetectionDate field to given value.
@@ -283,20 +283,20 @@ HasUnignoreType returns a boolean if a field has been set.
UnsetUnignoreType ensures that no value is present for UnignoreType, not even an explicit nil
### GetUnignoreDate
`func (o *Outlier) GetUnignoreDate() time.Time`
`func (o *Outlier) GetUnignoreDate() SailPointTime`
GetUnignoreDate returns the UnignoreDate field if non-nil, zero value otherwise.
### GetUnignoreDateOk
`func (o *Outlier) GetUnignoreDateOk() (*time.Time, bool)`
`func (o *Outlier) GetUnignoreDateOk() (*SailPointTime, bool)`
GetUnignoreDateOk returns a tuple with the UnignoreDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUnignoreDate
`func (o *Outlier) SetUnignoreDate(v time.Time)`
`func (o *Outlier) SetUnignoreDate(v SailPointTime)`
SetUnignoreDate sets UnignoreDate field to given value.
@@ -318,20 +318,20 @@ HasUnignoreDate returns a boolean if a field has been set.
UnsetUnignoreDate ensures that no value is present for UnignoreDate, not even an explicit nil
### GetIgnoreDate
`func (o *Outlier) GetIgnoreDate() time.Time`
`func (o *Outlier) GetIgnoreDate() SailPointTime`
GetIgnoreDate returns the IgnoreDate field if non-nil, zero value otherwise.
### GetIgnoreDateOk
`func (o *Outlier) GetIgnoreDateOk() (*time.Time, bool)`
`func (o *Outlier) GetIgnoreDateOk() (*SailPointTime, bool)`
GetIgnoreDateOk returns a tuple with the IgnoreDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIgnoreDate
`func (o *Outlier) SetIgnoreDate(v time.Time)`
`func (o *Outlier) SetIgnoreDate(v SailPointTime)`
SetIgnoreDate sets IgnoreDate field to given value.

View File

@@ -16,7 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'OutlierSummary', 'BetaOutlierSummary'
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **string** | The type of outlier summary | [optional]
**SnapshotDate** | Pointer to **time.Time** | The date the bulk outlier detection ran/snapshot was created | [optional]
**SnapshotDate** | Pointer to **SailPointTime** | The date the bulk outlier detection ran/snapshot was created | [optional]
**TotalOutliers** | Pointer to **int32** | Total number of outliers for the customer making the request | [optional]
**TotalIdentities** | Pointer to **int32** | Total number of identities for the customer making the request | [optional]
**TotalIgnored** | Pointer to **int32** | | [optional] [default to 0]
@@ -67,20 +67,20 @@ HasType returns a boolean if a field has been set.
### GetSnapshotDate
`func (o *OutlierSummary) GetSnapshotDate() time.Time`
`func (o *OutlierSummary) GetSnapshotDate() SailPointTime`
GetSnapshotDate returns the SnapshotDate field if non-nil, zero value otherwise.
### GetSnapshotDateOk
`func (o *OutlierSummary) GetSnapshotDateOk() (*time.Time, bool)`
`func (o *OutlierSummary) GetSnapshotDateOk() (*SailPointTime, bool)`
GetSnapshotDateOk returns a tuple with the SnapshotDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSnapshotDate
`func (o *OutlierSummary) SetSnapshotDate(v time.Time)`
`func (o *OutlierSummary) SetSnapshotDate(v SailPointTime)`
SetSnapshotDate sets SnapshotDate field to given value.

View File

@@ -16,8 +16,8 @@ tags: ['SDK', 'Software Development Kit', 'OwnerReference', 'BetaOwnerReference'
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **string** | Owner type. This field must be either left null or set to 'IDENTITY' on input, otherwise a 400 Bad Request error will result. | [optional]
**Id** | Pointer to **string** | Identity id | [optional]
**Name** | Pointer to **string** | Human-readable display name of the owner. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result. | [optional]
**Id** | Pointer to **string** | Owner's identity ID. | [optional]
**Name** | Pointer to **string** | Owner's name. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result. | [optional]
## Methods

View File

@@ -18,7 +18,7 @@ Name | Type | Description | Notes
**Id** | Pointer to **string** | The password policy Id. | [optional]
**Description** | Pointer to **NullableString** | Description for current password policy. | [optional]
**Name** | Pointer to **string** | The name of the password policy. | [optional]
**DateCreated** | Pointer to **time.Time** | Date the Password Policy was created. | [optional]
**DateCreated** | Pointer to **SailPointTime** | Date the Password Policy was created. | [optional]
**LastUpdated** | Pointer to **NullableTime** | Date the Password Policy was updated. | [optional]
**FirstExpirationReminder** | Pointer to **int64** | The number of days before expiration remaninder. | [optional]
**AccountIdMinWordLength** | Pointer to **int64** | The minimun length of account Id. By default is equals to -1. | [optional]
@@ -153,20 +153,20 @@ HasName returns a boolean if a field has been set.
### GetDateCreated
`func (o *PasswordPolicyV3Dto) GetDateCreated() time.Time`
`func (o *PasswordPolicyV3Dto) GetDateCreated() SailPointTime`
GetDateCreated returns the DateCreated field if non-nil, zero value otherwise.
### GetDateCreatedOk
`func (o *PasswordPolicyV3Dto) GetDateCreatedOk() (*time.Time, bool)`
`func (o *PasswordPolicyV3Dto) GetDateCreatedOk() (*SailPointTime, bool)`
GetDateCreatedOk returns a tuple with the DateCreated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDateCreated
`func (o *PasswordPolicyV3Dto) SetDateCreated(v time.Time)`
`func (o *PasswordPolicyV3Dto) SetDateCreated(v SailPointTime)`
SetDateCreated sets DateCreated field to given value.
@@ -178,20 +178,20 @@ HasDateCreated returns a boolean if a field has been set.
### GetLastUpdated
`func (o *PasswordPolicyV3Dto) GetLastUpdated() time.Time`
`func (o *PasswordPolicyV3Dto) GetLastUpdated() SailPointTime`
GetLastUpdated returns the LastUpdated field if non-nil, zero value otherwise.
### GetLastUpdatedOk
`func (o *PasswordPolicyV3Dto) GetLastUpdatedOk() (*time.Time, bool)`
`func (o *PasswordPolicyV3Dto) GetLastUpdatedOk() (*SailPointTime, bool)`
GetLastUpdatedOk returns a tuple with the LastUpdated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastUpdated
`func (o *PasswordPolicyV3Dto) SetLastUpdated(v time.Time)`
`func (o *PasswordPolicyV3Dto) SetLastUpdated(v SailPointTime)`
SetLastUpdated sets LastUpdated field to given value.

View File

@@ -143,20 +143,20 @@ HasSourceIds returns a boolean if a field has been set.
### GetCreated
`func (o *PasswordSyncGroup) GetCreated() time.Time`
`func (o *PasswordSyncGroup) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *PasswordSyncGroup) GetCreatedOk() (*time.Time, bool)`
`func (o *PasswordSyncGroup) 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 *PasswordSyncGroup) SetCreated(v time.Time)`
`func (o *PasswordSyncGroup) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -178,20 +178,20 @@ HasCreated returns a boolean if a field has been set.
UnsetCreated ensures that no value is present for Created, not even an explicit nil
### GetModified
`func (o *PasswordSyncGroup) GetModified() time.Time`
`func (o *PasswordSyncGroup) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *PasswordSyncGroup) GetModifiedOk() (*time.Time, bool)`
`func (o *PasswordSyncGroup) 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 *PasswordSyncGroup) SetModified(v time.Time)`
`func (o *PasswordSyncGroup) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -1,64 +0,0 @@
---
id: beta-patch-service-desk-integration-request
title: PatchServiceDeskIntegrationRequest
pagination_label: PatchServiceDeskIntegrationRequest
sidebar_label: PatchServiceDeskIntegrationRequest
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'PatchServiceDeskIntegrationRequest', 'BetaPatchServiceDeskIntegrationRequest']
slug: /tools/sdk/go/beta/models/patch-service-desk-integration-request
tags: ['SDK', 'Software Development Kit', 'PatchServiceDeskIntegrationRequest', 'BetaPatchServiceDeskIntegrationRequest']
---
# PatchServiceDeskIntegrationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operations** | Pointer to [**[]JsonPatchOperation**](json-patch-operation) | Operations to be applied | [optional]
## Methods
### NewPatchServiceDeskIntegrationRequest
`func NewPatchServiceDeskIntegrationRequest() *PatchServiceDeskIntegrationRequest`
NewPatchServiceDeskIntegrationRequest instantiates a new PatchServiceDeskIntegrationRequest object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewPatchServiceDeskIntegrationRequestWithDefaults
`func NewPatchServiceDeskIntegrationRequestWithDefaults() *PatchServiceDeskIntegrationRequest`
NewPatchServiceDeskIntegrationRequestWithDefaults instantiates a new PatchServiceDeskIntegrationRequest object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetOperations
`func (o *PatchServiceDeskIntegrationRequest) GetOperations() []JsonPatchOperation`
GetOperations returns the Operations field if non-nil, zero value otherwise.
### GetOperationsOk
`func (o *PatchServiceDeskIntegrationRequest) GetOperationsOk() (*[]JsonPatchOperation, bool)`
GetOperationsOk returns a tuple with the Operations field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOperations
`func (o *PatchServiceDeskIntegrationRequest) SetOperations(v []JsonPatchOperation)`
SetOperations sets Operations field to given value.
### HasOperations
`func (o *PatchServiceDeskIntegrationRequest) HasOperations() bool`
HasOperations returns a boolean if a field has been set.

View File

@@ -17,9 +17,9 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | The approval id. | [optional]
**Name** | Pointer to **string** | The name of the approval. | [optional]
**Created** | Pointer to **time.Time** | When the approval was created. | [optional]
**Modified** | Pointer to **time.Time** | When the approval was modified last time. | [optional]
**RequestCreated** | Pointer to **time.Time** | When the access-request was created. | [optional]
**Created** | Pointer to **SailPointTime** | When the approval was created. | [optional]
**Modified** | Pointer to **SailPointTime** | When the approval was modified last time. | [optional]
**RequestCreated** | Pointer to **SailPointTime** | When the access-request was created. | [optional]
**RequestType** | Pointer to [**NullableAccessRequestType**](access-request-type) | | [optional]
**Requester** | Pointer to [**AccessItemRequesterDto**](access-item-requester-dto) | | [optional]
**RequestedFor** | Pointer to [**AccessItemRequestedForDto**](access-item-requested-for-dto) | | [optional]
@@ -30,9 +30,9 @@ Name | Type | Description | Notes
**ForwardHistory** | Pointer to [**[]ApprovalForwardHistory**](approval-forward-history) | The history of approval forward action. | [optional]
**CommentRequiredWhenRejected** | Pointer to **bool** | When true the rejector has to provide comments when rejecting | [optional] [default to false]
**ActionInProcess** | Pointer to [**PendingApprovalAction**](pending-approval-action) | | [optional]
**RemoveDate** | Pointer to **time.Time** | The date the role or access profile or entitlement is no longer assigned to the specified identity. | [optional]
**RemoveDate** | Pointer to **SailPointTime** | The date the role or access profile or entitlement is no longer assigned to the specified identity. | [optional]
**RemoveDateUpdateRequested** | Pointer to **bool** | If true, then the request is to change the remove date or sunset date. | [optional] [default to false]
**CurrentRemoveDate** | Pointer to **time.Time** | The remove date or sunset date that was assigned at the time of the request. | [optional]
**CurrentRemoveDate** | Pointer to **SailPointTime** | The remove date or sunset date that was assigned at the time of the request. | [optional]
**SodViolationContext** | Pointer to [**NullableSodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [optional]
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs, if any were included in the corresponding access request item | [optional]
**RequestedAccounts** | Pointer to [**[]RequestedAccountRef**](requested-account-ref) | The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources. | [optional]
@@ -108,20 +108,20 @@ HasName returns a boolean if a field has been set.
### GetCreated
`func (o *PendingApproval) GetCreated() time.Time`
`func (o *PendingApproval) GetCreated() SailPointTime`
GetCreated returns the Created field if non-nil, zero value otherwise.
### GetCreatedOk
`func (o *PendingApproval) GetCreatedOk() (*time.Time, bool)`
`func (o *PendingApproval) 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 *PendingApproval) SetCreated(v time.Time)`
`func (o *PendingApproval) SetCreated(v SailPointTime)`
SetCreated sets Created field to given value.
@@ -133,20 +133,20 @@ HasCreated returns a boolean if a field has been set.
### GetModified
`func (o *PendingApproval) GetModified() time.Time`
`func (o *PendingApproval) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *PendingApproval) GetModifiedOk() (*time.Time, bool)`
`func (o *PendingApproval) 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 *PendingApproval) SetModified(v time.Time)`
`func (o *PendingApproval) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.
@@ -158,20 +158,20 @@ HasModified returns a boolean if a field has been set.
### GetRequestCreated
`func (o *PendingApproval) GetRequestCreated() time.Time`
`func (o *PendingApproval) GetRequestCreated() SailPointTime`
GetRequestCreated returns the RequestCreated field if non-nil, zero value otherwise.
### GetRequestCreatedOk
`func (o *PendingApproval) GetRequestCreatedOk() (*time.Time, bool)`
`func (o *PendingApproval) GetRequestCreatedOk() (*SailPointTime, bool)`
GetRequestCreatedOk returns a tuple with the RequestCreated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRequestCreated
`func (o *PendingApproval) SetRequestCreated(v time.Time)`
`func (o *PendingApproval) SetRequestCreated(v SailPointTime)`
SetRequestCreated sets RequestCreated field to given value.
@@ -443,20 +443,20 @@ HasActionInProcess returns a boolean if a field has been set.
### GetRemoveDate
`func (o *PendingApproval) GetRemoveDate() time.Time`
`func (o *PendingApproval) GetRemoveDate() SailPointTime`
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
### GetRemoveDateOk
`func (o *PendingApproval) GetRemoveDateOk() (*time.Time, bool)`
`func (o *PendingApproval) GetRemoveDateOk() (*SailPointTime, bool)`
GetRemoveDateOk returns a tuple with the RemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRemoveDate
`func (o *PendingApproval) SetRemoveDate(v time.Time)`
`func (o *PendingApproval) SetRemoveDate(v SailPointTime)`
SetRemoveDate sets RemoveDate field to given value.
@@ -493,20 +493,20 @@ HasRemoveDateUpdateRequested returns a boolean if a field has been set.
### GetCurrentRemoveDate
`func (o *PendingApproval) GetCurrentRemoveDate() time.Time`
`func (o *PendingApproval) GetCurrentRemoveDate() SailPointTime`
GetCurrentRemoveDate returns the CurrentRemoveDate field if non-nil, zero value otherwise.
### GetCurrentRemoveDateOk
`func (o *PendingApproval) GetCurrentRemoveDateOk() (*time.Time, bool)`
`func (o *PendingApproval) GetCurrentRemoveDateOk() (*SailPointTime, bool)`
GetCurrentRemoveDateOk returns a tuple with the CurrentRemoveDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCurrentRemoveDate
`func (o *PendingApproval) SetCurrentRemoveDate(v time.Time)`
`func (o *PendingApproval) SetCurrentRemoveDate(v SailPointTime)`
SetCurrentRemoveDate sets CurrentRemoveDate field to given value.

View File

@@ -17,7 +17,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | Pointer to **string** | The template notification key. | [optional]
**Mediums** | Pointer to [**[]Medium**](medium) | List of preferred notification mediums, i.e., the mediums (or method) for which notifications are enabled. More mediums may be added in the future. | [optional]
**Modified** | Pointer to **time.Time** | Modified date of preference | [optional]
**Modified** | Pointer to **SailPointTime** | Modified date of preference | [optional]
## Methods
@@ -90,20 +90,20 @@ HasMediums returns a boolean if a field has been set.
### GetModified
`func (o *PreferencesDto) GetModified() time.Time`
`func (o *PreferencesDto) GetModified() SailPointTime`
GetModified returns the Modified field if non-nil, zero value otherwise.
### GetModifiedOk
`func (o *PreferencesDto) GetModifiedOk() (*time.Time, bool)`
`func (o *PreferencesDto) 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 *PreferencesDto) SetModified(v time.Time)`
`func (o *PreferencesDto) SetModified(v SailPointTime)`
SetModified sets Modified field to given value.

View File

@@ -25,7 +25,7 @@ Name | Type | Description | Notes
**Attributes** | Pointer to **map[string]interface{}** | Additional attributes for a product | [optional]
**Zone** | Pointer to **string** | Zone | [optional]
**Status** | Pointer to **string** | Status of the product | [optional]
**StatusDateTime** | Pointer to **time.Time** | Status datetime | [optional]
**StatusDateTime** | Pointer to **SailPointTime** | Status datetime | [optional]
**Reason** | Pointer to **string** | If there's a tenant provisioning failure then reason will have the description of error | [optional]
**Notes** | Pointer to **string** | Product could have additional notes added during tenant provisioning. | [optional]
**DateCreated** | Pointer to **NullableTime** | Date when the product was created | [optional]
@@ -313,20 +313,20 @@ HasStatus returns a boolean if a field has been set.
### GetStatusDateTime
`func (o *Product) GetStatusDateTime() time.Time`
`func (o *Product) GetStatusDateTime() SailPointTime`
GetStatusDateTime returns the StatusDateTime field if non-nil, zero value otherwise.
### GetStatusDateTimeOk
`func (o *Product) GetStatusDateTimeOk() (*time.Time, bool)`
`func (o *Product) GetStatusDateTimeOk() (*SailPointTime, bool)`
GetStatusDateTimeOk returns a tuple with the StatusDateTime field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStatusDateTime
`func (o *Product) SetStatusDateTime(v time.Time)`
`func (o *Product) SetStatusDateTime(v SailPointTime)`
SetStatusDateTime sets StatusDateTime field to given value.
@@ -388,20 +388,20 @@ HasNotes returns a boolean if a field has been set.
### GetDateCreated
`func (o *Product) GetDateCreated() time.Time`
`func (o *Product) GetDateCreated() SailPointTime`
GetDateCreated returns the DateCreated field if non-nil, zero value otherwise.
### GetDateCreatedOk
`func (o *Product) GetDateCreatedOk() (*time.Time, bool)`
`func (o *Product) GetDateCreatedOk() (*SailPointTime, bool)`
GetDateCreatedOk returns a tuple with the DateCreated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDateCreated
`func (o *Product) SetDateCreated(v time.Time)`
`func (o *Product) SetDateCreated(v SailPointTime)`
SetDateCreated sets DateCreated field to given value.
@@ -423,20 +423,20 @@ HasDateCreated returns a boolean if a field has been set.
UnsetDateCreated ensures that no value is present for DateCreated, not even an explicit nil
### GetLastUpdated
`func (o *Product) GetLastUpdated() time.Time`
`func (o *Product) GetLastUpdated() SailPointTime`
GetLastUpdated returns the LastUpdated field if non-nil, zero value otherwise.
### GetLastUpdatedOk
`func (o *Product) GetLastUpdatedOk() (*time.Time, bool)`
`func (o *Product) GetLastUpdatedOk() (*SailPointTime, bool)`
GetLastUpdatedOk returns a tuple with the LastUpdated field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastUpdated
`func (o *Product) SetLastUpdated(v time.Time)`
`func (o *Product) SetLastUpdated(v SailPointTime)`
SetLastUpdated sets LastUpdated field to given value.

View File

@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'ProvisioningCriteriaLevel1', 'BetaPro
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operation** | Pointer to [**ProvisioningCriteriaOperation**](provisioning-criteria-operation) | | [optional]
**Attribute** | Pointer to **NullableString** | Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error. | [optional]
**Value** | Pointer to **NullableString** | String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type. | [optional]
**Children** | Pointer to [**[]ProvisioningCriteriaLevel2**](provisioning-criteria-level2) | Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
**Attribute** | Pointer to **NullableString** | Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error. | [optional]
**Value** | Pointer to **NullableString** | String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type. | [optional]
**Children** | Pointer to [**[]ProvisioningCriteriaLevel2**](provisioning-criteria-level2) | Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
## Methods

View File

@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'ProvisioningCriteriaLevel2', 'BetaPro
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operation** | Pointer to [**ProvisioningCriteriaOperation**](provisioning-criteria-operation) | | [optional]
**Attribute** | Pointer to **NullableString** | Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error. | [optional]
**Value** | Pointer to **NullableString** | String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type. | [optional]
**Children** | Pointer to [**[]ProvisioningCriteriaLevel3**](provisioning-criteria-level3) | Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
**Attribute** | Pointer to **NullableString** | Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error. | [optional]
**Value** | Pointer to **NullableString** | String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type. | [optional]
**Children** | Pointer to [**[]ProvisioningCriteriaLevel3**](provisioning-criteria-level3) | Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
## Methods

View File

@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'ProvisioningCriteriaLevel3', 'BetaPro
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operation** | Pointer to [**ProvisioningCriteriaOperation**](provisioning-criteria-operation) | | [optional]
**Attribute** | Pointer to **NullableString** | Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error. | [optional]
**Value** | Pointer to **string** | String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type. | [optional]
**Children** | Pointer to **NullableString** | Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
**Attribute** | Pointer to **NullableString** | Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error. | [optional]
**Value** | Pointer to **NullableString** | String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type. | [optional]
**Children** | Pointer to **NullableString** | Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. | [optional]
## Methods
@@ -124,6 +124,16 @@ SetValue sets Value field to given value.
HasValue returns a boolean if a field has been set.
### SetValueNil
`func (o *ProvisioningCriteriaLevel3) SetValueNil(b bool)`
SetValueNil sets the value for Value to be an explicit nil
### UnsetValue
`func (o *ProvisioningCriteriaLevel3) UnsetValue()`
UnsetValue ensures that no value is present for Value, not even an explicit nil
### GetChildren
`func (o *ProvisioningCriteriaLevel3) GetChildren() string`

Some files were not shown because too many files have changed in this diff Show More