mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
update go docs and examples
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -20,6 +20,8 @@ Name | Type | Description | Notes
|
||||
**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 **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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
168
docs/tools/sdk/go/Reference/V2024/Models/AccountInfoRef.md
Normal file
168
docs/tools/sdk/go/Reference/V2024/Models/AccountInfoRef.md
Normal file
@@ -0,0 +1,168 @@
|
||||
---
|
||||
id: v2024-account-info-ref
|
||||
title: AccountInfoRef
|
||||
pagination_label: AccountInfoRef
|
||||
sidebar_label: AccountInfoRef
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AccountInfoRef', 'V2024AccountInfoRef']
|
||||
slug: /tools/sdk/go/v2024/models/account-info-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountInfoRef', 'V2024AccountInfoRef']
|
||||
---
|
||||
|
||||
# AccountInfoRef
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Uuid** | Pointer to **string** | The uuid for the account, available under the 'objectguid' attribute | [optional]
|
||||
**NativeIdentity** | Pointer to **string** | The 'distinguishedName' attribute for the account | [optional]
|
||||
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
|
||||
**Id** | Pointer to **string** | The account id | [optional]
|
||||
**Name** | Pointer to **string** | The account display name | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAccountInfoRef
|
||||
|
||||
`func NewAccountInfoRef() *AccountInfoRef`
|
||||
|
||||
NewAccountInfoRef instantiates a new AccountInfoRef 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
|
||||
|
||||
### NewAccountInfoRefWithDefaults
|
||||
|
||||
`func NewAccountInfoRefWithDefaults() *AccountInfoRef`
|
||||
|
||||
NewAccountInfoRefWithDefaults instantiates a new AccountInfoRef 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
|
||||
|
||||
### GetUuid
|
||||
|
||||
`func (o *AccountInfoRef) GetUuid() string`
|
||||
|
||||
GetUuid returns the Uuid field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUuidOk
|
||||
|
||||
`func (o *AccountInfoRef) GetUuidOk() (*string, bool)`
|
||||
|
||||
GetUuidOk returns a tuple with the Uuid field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetUuid
|
||||
|
||||
`func (o *AccountInfoRef) SetUuid(v string)`
|
||||
|
||||
SetUuid sets Uuid field to given value.
|
||||
|
||||
### HasUuid
|
||||
|
||||
`func (o *AccountInfoRef) HasUuid() bool`
|
||||
|
||||
HasUuid returns a boolean if a field has been set.
|
||||
|
||||
### GetNativeIdentity
|
||||
|
||||
`func (o *AccountInfoRef) GetNativeIdentity() string`
|
||||
|
||||
GetNativeIdentity returns the NativeIdentity field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNativeIdentityOk
|
||||
|
||||
`func (o *AccountInfoRef) 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 *AccountInfoRef) SetNativeIdentity(v string)`
|
||||
|
||||
SetNativeIdentity sets NativeIdentity field to given value.
|
||||
|
||||
### HasNativeIdentity
|
||||
|
||||
`func (o *AccountInfoRef) HasNativeIdentity() bool`
|
||||
|
||||
HasNativeIdentity returns a boolean if a field has been set.
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *AccountInfoRef) GetType() DtoType`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *AccountInfoRef) GetTypeOk() (*DtoType, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *AccountInfoRef) SetType(v DtoType)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *AccountInfoRef) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *AccountInfoRef) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *AccountInfoRef) 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 *AccountInfoRef) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *AccountInfoRef) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetName
|
||||
|
||||
`func (o *AccountInfoRef) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *AccountInfoRef) 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 *AccountInfoRef) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *AccountInfoRef) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
|
||||
100
docs/tools/sdk/go/Reference/V2024/Models/AccountItemRef.md
Normal file
100
docs/tools/sdk/go/Reference/V2024/Models/AccountItemRef.md
Normal file
@@ -0,0 +1,100 @@
|
||||
---
|
||||
id: v2024-account-item-ref
|
||||
title: AccountItemRef
|
||||
pagination_label: AccountItemRef
|
||||
sidebar_label: AccountItemRef
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AccountItemRef', 'V2024AccountItemRef']
|
||||
slug: /tools/sdk/go/v2024/models/account-item-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountItemRef', 'V2024AccountItemRef']
|
||||
---
|
||||
|
||||
# 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.
|
||||
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
---
|
||||
id: v2024-accounts-selection-request
|
||||
title: AccountsSelectionRequest
|
||||
pagination_label: AccountsSelectionRequest
|
||||
sidebar_label: AccountsSelectionRequest
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AccountsSelectionRequest', 'V2024AccountsSelectionRequest']
|
||||
slug: /tools/sdk/go/v2024/models/accounts-selection-request
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountsSelectionRequest', 'V2024AccountsSelectionRequest']
|
||||
---
|
||||
|
||||
# AccountsSelectionRequest
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**RequestedFor** | **[]string** | A list of Identity IDs for whom the Access is requested. |
|
||||
**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]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAccountsSelectionRequest
|
||||
|
||||
`func NewAccountsSelectionRequest(requestedFor []string, requestedItems []AccessRequestItem, ) *AccountsSelectionRequest`
|
||||
|
||||
NewAccountsSelectionRequest instantiates a new AccountsSelectionRequest 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
|
||||
|
||||
### NewAccountsSelectionRequestWithDefaults
|
||||
|
||||
`func NewAccountsSelectionRequestWithDefaults() *AccountsSelectionRequest`
|
||||
|
||||
NewAccountsSelectionRequestWithDefaults instantiates a new AccountsSelectionRequest 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
|
||||
|
||||
### GetRequestedFor
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestedFor() []string`
|
||||
|
||||
GetRequestedFor returns the RequestedFor field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestedForOk
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestedForOk() (*[]string, bool)`
|
||||
|
||||
GetRequestedForOk returns a tuple with the RequestedFor field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestedFor
|
||||
|
||||
`func (o *AccountsSelectionRequest) SetRequestedFor(v []string)`
|
||||
|
||||
SetRequestedFor sets RequestedFor field to given value.
|
||||
|
||||
|
||||
### GetRequestType
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestType() AccessRequestType`
|
||||
|
||||
GetRequestType returns the RequestType field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestTypeOk
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestTypeOk() (*AccessRequestType, bool)`
|
||||
|
||||
GetRequestTypeOk returns a tuple with the RequestType field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestType
|
||||
|
||||
`func (o *AccountsSelectionRequest) SetRequestType(v AccessRequestType)`
|
||||
|
||||
SetRequestType sets RequestType field to given value.
|
||||
|
||||
### HasRequestType
|
||||
|
||||
`func (o *AccountsSelectionRequest) HasRequestType() bool`
|
||||
|
||||
HasRequestType returns a boolean if a field has been set.
|
||||
|
||||
### SetRequestTypeNil
|
||||
|
||||
`func (o *AccountsSelectionRequest) SetRequestTypeNil(b bool)`
|
||||
|
||||
SetRequestTypeNil sets the value for RequestType to be an explicit nil
|
||||
|
||||
### UnsetRequestType
|
||||
`func (o *AccountsSelectionRequest) UnsetRequestType()`
|
||||
|
||||
UnsetRequestType ensures that no value is present for RequestType, not even an explicit nil
|
||||
### GetRequestedItems
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestedItems() []AccessRequestItem`
|
||||
|
||||
GetRequestedItems returns the RequestedItems field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestedItemsOk
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetRequestedItemsOk() (*[]AccessRequestItem, bool)`
|
||||
|
||||
GetRequestedItemsOk returns a tuple with the RequestedItems field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestedItems
|
||||
|
||||
`func (o *AccountsSelectionRequest) SetRequestedItems(v []AccessRequestItem)`
|
||||
|
||||
SetRequestedItems sets RequestedItems field to given value.
|
||||
|
||||
|
||||
### GetClientMetadata
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetClientMetadata() map[string]string`
|
||||
|
||||
GetClientMetadata returns the ClientMetadata field if non-nil, zero value otherwise.
|
||||
|
||||
### GetClientMetadataOk
|
||||
|
||||
`func (o *AccountsSelectionRequest) GetClientMetadataOk() (*map[string]string, bool)`
|
||||
|
||||
GetClientMetadataOk returns a tuple with the ClientMetadata field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetClientMetadata
|
||||
|
||||
`func (o *AccountsSelectionRequest) SetClientMetadata(v map[string]string)`
|
||||
|
||||
SetClientMetadata sets ClientMetadata field to given value.
|
||||
|
||||
### HasClientMetadata
|
||||
|
||||
`func (o *AccountsSelectionRequest) HasClientMetadata() bool`
|
||||
|
||||
HasClientMetadata returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
---
|
||||
id: v2024-accounts-selection-response
|
||||
title: AccountsSelectionResponse
|
||||
pagination_label: AccountsSelectionResponse
|
||||
sidebar_label: AccountsSelectionResponse
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AccountsSelectionResponse', 'V2024AccountsSelectionResponse']
|
||||
slug: /tools/sdk/go/v2024/models/accounts-selection-response
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountsSelectionResponse', 'V2024AccountsSelectionResponse']
|
||||
---
|
||||
|
||||
# AccountsSelectionResponse
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Identities** | Pointer to [**[]IdentityAccountSelections**](identity-account-selections) | A list of available account selections per identity in the request, for all the requested items | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAccountsSelectionResponse
|
||||
|
||||
`func NewAccountsSelectionResponse() *AccountsSelectionResponse`
|
||||
|
||||
NewAccountsSelectionResponse instantiates a new AccountsSelectionResponse 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
|
||||
|
||||
### NewAccountsSelectionResponseWithDefaults
|
||||
|
||||
`func NewAccountsSelectionResponseWithDefaults() *AccountsSelectionResponse`
|
||||
|
||||
NewAccountsSelectionResponseWithDefaults instantiates a new AccountsSelectionResponse 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
|
||||
|
||||
### GetIdentities
|
||||
|
||||
`func (o *AccountsSelectionResponse) GetIdentities() []IdentityAccountSelections`
|
||||
|
||||
GetIdentities returns the Identities field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdentitiesOk
|
||||
|
||||
`func (o *AccountsSelectionResponse) GetIdentitiesOk() (*[]IdentityAccountSelections, bool)`
|
||||
|
||||
GetIdentitiesOk returns a tuple with the Identities field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIdentities
|
||||
|
||||
`func (o *AccountsSelectionResponse) SetIdentities(v []IdentityAccountSelections)`
|
||||
|
||||
SetIdentities sets Identities field to given value.
|
||||
|
||||
### HasIdentities
|
||||
|
||||
`func (o *AccountsSelectionResponse) HasIdentities() bool`
|
||||
|
||||
HasIdentities returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -22,4 +22,6 @@ tags: ['SDK', 'Software Development Kit', 'AttributeDefinitionType', 'V2024Attri
|
||||
|
||||
* `BOOLEAN` (value: `"BOOLEAN"`)
|
||||
|
||||
* `DATE` (value: `"DATE"`)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: v2024-attribute-mappings
|
||||
title: AttributeMappings
|
||||
pagination_label: AttributeMappings
|
||||
sidebar_label: AttributeMappings
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappings', 'V2024AttributeMappings']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappings', 'V2024AttributeMappings']
|
||||
---
|
||||
|
||||
# AttributeMappings
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Target** | Pointer to [**AttributeMappingsAllOfTarget**](attribute-mappings-all-of-target) | | [optional]
|
||||
**TransformDefinition** | Pointer to [**AttributeMappingsAllOfTransformDefinition**](attribute-mappings-all-of-transform-definition) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappings
|
||||
|
||||
`func NewAttributeMappings() *AttributeMappings`
|
||||
|
||||
NewAttributeMappings instantiates a new AttributeMappings 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
|
||||
|
||||
### NewAttributeMappingsWithDefaults
|
||||
|
||||
`func NewAttributeMappingsWithDefaults() *AttributeMappings`
|
||||
|
||||
NewAttributeMappingsWithDefaults instantiates a new AttributeMappings 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
|
||||
|
||||
### GetTarget
|
||||
|
||||
`func (o *AttributeMappings) GetTarget() AttributeMappingsAllOfTarget`
|
||||
|
||||
GetTarget returns the Target field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTargetOk
|
||||
|
||||
`func (o *AttributeMappings) GetTargetOk() (*AttributeMappingsAllOfTarget, bool)`
|
||||
|
||||
GetTargetOk returns a tuple with the Target field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTarget
|
||||
|
||||
`func (o *AttributeMappings) SetTarget(v AttributeMappingsAllOfTarget)`
|
||||
|
||||
SetTarget sets Target field to given value.
|
||||
|
||||
### HasTarget
|
||||
|
||||
`func (o *AttributeMappings) HasTarget() bool`
|
||||
|
||||
HasTarget returns a boolean if a field has been set.
|
||||
|
||||
### GetTransformDefinition
|
||||
|
||||
`func (o *AttributeMappings) GetTransformDefinition() AttributeMappingsAllOfTransformDefinition`
|
||||
|
||||
GetTransformDefinition returns the TransformDefinition field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTransformDefinitionOk
|
||||
|
||||
`func (o *AttributeMappings) GetTransformDefinitionOk() (*AttributeMappingsAllOfTransformDefinition, bool)`
|
||||
|
||||
GetTransformDefinitionOk returns a tuple with the TransformDefinition field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTransformDefinition
|
||||
|
||||
`func (o *AttributeMappings) SetTransformDefinition(v AttributeMappingsAllOfTransformDefinition)`
|
||||
|
||||
SetTransformDefinition sets TransformDefinition field to given value.
|
||||
|
||||
### HasTransformDefinition
|
||||
|
||||
`func (o *AttributeMappings) HasTransformDefinition() bool`
|
||||
|
||||
HasTransformDefinition returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-attribute-mappings-all-of-target
|
||||
title: AttributeMappingsAllOfTarget
|
||||
pagination_label: AttributeMappingsAllOfTarget
|
||||
sidebar_label: AttributeMappingsAllOfTarget
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappingsAllOfTarget', 'V2024AttributeMappingsAllOfTarget']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings-all-of-target
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTarget', 'V2024AttributeMappingsAllOfTarget']
|
||||
---
|
||||
|
||||
# AttributeMappingsAllOfTarget
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **string** | The type of target entity | [optional]
|
||||
**AttributeName** | Pointer to **string** | Name of the targeted attribute | [optional]
|
||||
**SourceId** | Pointer to **string** | The ID of Source | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappingsAllOfTarget
|
||||
|
||||
`func NewAttributeMappingsAllOfTarget() *AttributeMappingsAllOfTarget`
|
||||
|
||||
NewAttributeMappingsAllOfTarget instantiates a new AttributeMappingsAllOfTarget 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
|
||||
|
||||
### NewAttributeMappingsAllOfTargetWithDefaults
|
||||
|
||||
`func NewAttributeMappingsAllOfTargetWithDefaults() *AttributeMappingsAllOfTarget`
|
||||
|
||||
NewAttributeMappingsAllOfTargetWithDefaults instantiates a new AttributeMappingsAllOfTarget 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
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetAttributeName() string`
|
||||
|
||||
GetAttributeName returns the AttributeName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributeNameOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetAttributeNameOk() (*string, bool)`
|
||||
|
||||
GetAttributeNameOk returns a tuple with the AttributeName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) SetAttributeName(v string)`
|
||||
|
||||
SetAttributeName sets AttributeName field to given value.
|
||||
|
||||
### HasAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) HasAttributeName() bool`
|
||||
|
||||
HasAttributeName returns a boolean if a field has been set.
|
||||
|
||||
### GetSourceId
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetSourceId() string`
|
||||
|
||||
GetSourceId returns the SourceId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceIdOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) GetSourceIdOk() (*string, bool)`
|
||||
|
||||
GetSourceIdOk returns a tuple with the SourceId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceId
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) SetSourceId(v string)`
|
||||
|
||||
SetSourceId sets SourceId field to given value.
|
||||
|
||||
### HasSourceId
|
||||
|
||||
`func (o *AttributeMappingsAllOfTarget) HasSourceId() bool`
|
||||
|
||||
HasSourceId returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-attribute-mappings-all-of-transform-definition
|
||||
title: AttributeMappingsAllOfTransformDefinition
|
||||
pagination_label: AttributeMappingsAllOfTransformDefinition
|
||||
sidebar_label: AttributeMappingsAllOfTransformDefinition
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappingsAllOfTransformDefinition', 'V2024AttributeMappingsAllOfTransformDefinition']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings-all-of-transform-definition
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTransformDefinition', 'V2024AttributeMappingsAllOfTransformDefinition']
|
||||
---
|
||||
|
||||
# AttributeMappingsAllOfTransformDefinition
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **string** | The type of transform | [optional]
|
||||
**Attributes** | Pointer to [**AttributeMappingsAllOfTransformDefinitionAttributes**](attribute-mappings-all-of-transform-definition-attributes) | | [optional]
|
||||
**Id** | Pointer to **string** | Transform Operation | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinition
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinition() *AttributeMappingsAllOfTransformDefinition`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinition instantiates a new AttributeMappingsAllOfTransformDefinition 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
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionWithDefaults
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionWithDefaults() *AttributeMappingsAllOfTransformDefinition`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionWithDefaults instantiates a new AttributeMappingsAllOfTransformDefinition 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
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) GetAttributes() AttributeMappingsAllOfTransformDefinitionAttributes`
|
||||
|
||||
GetAttributes returns the Attributes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributesOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) GetAttributesOk() (*AttributeMappingsAllOfTransformDefinitionAttributes, bool)`
|
||||
|
||||
GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) SetAttributes(v AttributeMappingsAllOfTransformDefinitionAttributes)`
|
||||
|
||||
SetAttributes sets Attributes field to given value.
|
||||
|
||||
### HasAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) HasAttributes() bool`
|
||||
|
||||
HasAttributes returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) 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 *AttributeMappingsAllOfTransformDefinition) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinition) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
---
|
||||
id: v2024-attribute-mappings-all-of-transform-definition-attributes
|
||||
title: AttributeMappingsAllOfTransformDefinitionAttributes
|
||||
pagination_label: AttributeMappingsAllOfTransformDefinitionAttributes
|
||||
sidebar_label: AttributeMappingsAllOfTransformDefinitionAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappingsAllOfTransformDefinitionAttributes', 'V2024AttributeMappingsAllOfTransformDefinitionAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings-all-of-transform-definition-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTransformDefinitionAttributes', 'V2024AttributeMappingsAllOfTransformDefinitionAttributes']
|
||||
---
|
||||
|
||||
# AttributeMappingsAllOfTransformDefinitionAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Input** | Pointer to [**AttributeMappingsAllOfTransformDefinitionAttributesInput**](attribute-mappings-all-of-transform-definition-attributes-input) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributes
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributes() *AttributeMappingsAllOfTransformDefinitionAttributes`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributes instantiates a new AttributeMappingsAllOfTransformDefinitionAttributes 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
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributesWithDefaults
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributesWithDefaults() *AttributeMappingsAllOfTransformDefinitionAttributes`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributesWithDefaults instantiates a new AttributeMappingsAllOfTransformDefinitionAttributes 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
|
||||
|
||||
### GetInput
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributes) GetInput() AttributeMappingsAllOfTransformDefinitionAttributesInput`
|
||||
|
||||
GetInput returns the Input field if non-nil, zero value otherwise.
|
||||
|
||||
### GetInputOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributes) GetInputOk() (*AttributeMappingsAllOfTransformDefinitionAttributesInput, bool)`
|
||||
|
||||
GetInputOk returns a tuple with the Input field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetInput
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributes) SetInput(v AttributeMappingsAllOfTransformDefinitionAttributesInput)`
|
||||
|
||||
SetInput sets Input field to given value.
|
||||
|
||||
### HasInput
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributes) HasInput() bool`
|
||||
|
||||
HasInput returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: v2024-attribute-mappings-all-of-transform-definition-attributes-input
|
||||
title: AttributeMappingsAllOfTransformDefinitionAttributesInput
|
||||
pagination_label: AttributeMappingsAllOfTransformDefinitionAttributesInput
|
||||
sidebar_label: AttributeMappingsAllOfTransformDefinitionAttributesInput
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappingsAllOfTransformDefinitionAttributesInput', 'V2024AttributeMappingsAllOfTransformDefinitionAttributesInput']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings-all-of-transform-definition-attributes-input
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTransformDefinitionAttributesInput', 'V2024AttributeMappingsAllOfTransformDefinitionAttributesInput']
|
||||
---
|
||||
|
||||
# AttributeMappingsAllOfTransformDefinitionAttributesInput
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **string** | The Type of Attribute | [optional]
|
||||
**Attributes** | Pointer to [**AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes**](attribute-mappings-all-of-transform-definition-attributes-input-attributes) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributesInput
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributesInput() *AttributeMappingsAllOfTransformDefinitionAttributesInput`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributesInput instantiates a new AttributeMappingsAllOfTransformDefinitionAttributesInput 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
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributesInputWithDefaults
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributesInputWithDefaults() *AttributeMappingsAllOfTransformDefinitionAttributesInput`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributesInputWithDefaults instantiates a new AttributeMappingsAllOfTransformDefinitionAttributesInput 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
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) GetAttributes() AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes`
|
||||
|
||||
GetAttributes returns the Attributes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributesOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) GetAttributesOk() (*AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes, bool)`
|
||||
|
||||
GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) SetAttributes(v AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes)`
|
||||
|
||||
SetAttributes sets Attributes field to given value.
|
||||
|
||||
### HasAttributes
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInput) HasAttributes() bool`
|
||||
|
||||
HasAttributes returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-attribute-mappings-all-of-transform-definition-attributes-input-attributes
|
||||
title: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes
|
||||
pagination_label: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes
|
||||
sidebar_label: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes', 'V2024AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/attribute-mappings-all-of-transform-definition-attributes-input-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes', 'V2024AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes']
|
||||
---
|
||||
|
||||
# AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AttributeName** | Pointer to **string** | The name of attribute | [optional]
|
||||
**SourceName** | Pointer to **string** | Name of the Source | [optional]
|
||||
**Name** | Pointer to **string** | ID of the Source | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributes
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributes() *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributes instantiates a new AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes 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
|
||||
|
||||
### NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributesWithDefaults
|
||||
|
||||
`func NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributesWithDefaults() *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes`
|
||||
|
||||
NewAttributeMappingsAllOfTransformDefinitionAttributesInputAttributesWithDefaults instantiates a new AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes 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
|
||||
|
||||
### GetAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) GetAttributeName() string`
|
||||
|
||||
GetAttributeName returns the AttributeName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributeNameOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) GetAttributeNameOk() (*string, bool)`
|
||||
|
||||
GetAttributeNameOk returns a tuple with the AttributeName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) SetAttributeName(v string)`
|
||||
|
||||
SetAttributeName sets AttributeName field to given value.
|
||||
|
||||
### HasAttributeName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) HasAttributeName() bool`
|
||||
|
||||
HasAttributeName returns a boolean if a field has been set.
|
||||
|
||||
### GetSourceName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) GetSourceName() string`
|
||||
|
||||
GetSourceName returns the SourceName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceNameOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) GetSourceNameOk() (*string, bool)`
|
||||
|
||||
GetSourceNameOk returns a tuple with the SourceName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) SetSourceName(v string)`
|
||||
|
||||
SetSourceName sets SourceName field to given value.
|
||||
|
||||
### HasSourceName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) HasSourceName() bool`
|
||||
|
||||
HasSourceName returns a boolean if a field has been set.
|
||||
|
||||
### GetName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) 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 *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -15,10 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'V2024Enti
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AllowEntitlementRequest** | Pointer to **bool** | If this is true, entitlement requests are allowed. | [optional] [default to false]
|
||||
**RequestCommentsRequired** | Pointer to **bool** | If this is true, comments are required to submit entitlement requests. | [optional] [default to false]
|
||||
**DeniedCommentsRequired** | Pointer to **bool** | If this is true, comments are required to reject entitlement requests. | [optional] [default to false]
|
||||
**GrantRequestApprovalSchemes** | Pointer to **NullableString** | Approval schemes for granting entitlement request. This can be empty if no approval is needed. Multiple schemes must be comma-separated. The valid schemes are \"entitlementOwner\", \"sourceOwner\", \"manager\" and \"`workgroup:{id}`\". You can use multiple governance groups (workgroups). | [optional] [default to "sourceOwner"]
|
||||
**AccessRequestConfig** | Pointer to [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -39,114 +36,29 @@ NewEntitlementRequestConfigWithDefaults instantiates a new EntitlementRequestCon
|
||||
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
|
||||
|
||||
### GetAllowEntitlementRequest
|
||||
### GetAccessRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetAllowEntitlementRequest() bool`
|
||||
`func (o *EntitlementRequestConfig) GetAccessRequestConfig() EntitlementAccessRequestConfig`
|
||||
|
||||
GetAllowEntitlementRequest returns the AllowEntitlementRequest field if non-nil, zero value otherwise.
|
||||
GetAccessRequestConfig returns the AccessRequestConfig field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAllowEntitlementRequestOk
|
||||
### GetAccessRequestConfigOk
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetAllowEntitlementRequestOk() (*bool, bool)`
|
||||
`func (o *EntitlementRequestConfig) GetAccessRequestConfigOk() (*EntitlementAccessRequestConfig, bool)`
|
||||
|
||||
GetAllowEntitlementRequestOk returns a tuple with the AllowEntitlementRequest field if it's non-nil, zero value otherwise
|
||||
GetAccessRequestConfigOk returns a tuple with the AccessRequestConfig field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAllowEntitlementRequest
|
||||
### SetAccessRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetAllowEntitlementRequest(v bool)`
|
||||
`func (o *EntitlementRequestConfig) SetAccessRequestConfig(v EntitlementAccessRequestConfig)`
|
||||
|
||||
SetAllowEntitlementRequest sets AllowEntitlementRequest field to given value.
|
||||
SetAccessRequestConfig sets AccessRequestConfig field to given value.
|
||||
|
||||
### HasAllowEntitlementRequest
|
||||
### HasAccessRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) HasAllowEntitlementRequest() bool`
|
||||
`func (o *EntitlementRequestConfig) HasAccessRequestConfig() bool`
|
||||
|
||||
HasAllowEntitlementRequest returns a boolean if a field has been set.
|
||||
HasAccessRequestConfig returns a boolean if a field has been set.
|
||||
|
||||
### GetRequestCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetRequestCommentsRequired() bool`
|
||||
|
||||
GetRequestCommentsRequired returns the RequestCommentsRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestCommentsRequiredOk
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetRequestCommentsRequiredOk() (*bool, bool)`
|
||||
|
||||
GetRequestCommentsRequiredOk returns a tuple with the RequestCommentsRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetRequestCommentsRequired(v bool)`
|
||||
|
||||
SetRequestCommentsRequired sets RequestCommentsRequired field to given value.
|
||||
|
||||
### HasRequestCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) HasRequestCommentsRequired() bool`
|
||||
|
||||
HasRequestCommentsRequired returns a boolean if a field has been set.
|
||||
|
||||
### GetDeniedCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetDeniedCommentsRequired() bool`
|
||||
|
||||
GetDeniedCommentsRequired returns the DeniedCommentsRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDeniedCommentsRequiredOk
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetDeniedCommentsRequiredOk() (*bool, bool)`
|
||||
|
||||
GetDeniedCommentsRequiredOk returns a tuple with the DeniedCommentsRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDeniedCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetDeniedCommentsRequired(v bool)`
|
||||
|
||||
SetDeniedCommentsRequired sets DeniedCommentsRequired field to given value.
|
||||
|
||||
### HasDeniedCommentsRequired
|
||||
|
||||
`func (o *EntitlementRequestConfig) HasDeniedCommentsRequired() bool`
|
||||
|
||||
HasDeniedCommentsRequired returns a boolean if a field has been set.
|
||||
|
||||
### GetGrantRequestApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetGrantRequestApprovalSchemes() string`
|
||||
|
||||
GetGrantRequestApprovalSchemes returns the GrantRequestApprovalSchemes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetGrantRequestApprovalSchemesOk
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetGrantRequestApprovalSchemesOk() (*string, bool)`
|
||||
|
||||
GetGrantRequestApprovalSchemesOk returns a tuple with the GrantRequestApprovalSchemes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetGrantRequestApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetGrantRequestApprovalSchemes(v string)`
|
||||
|
||||
SetGrantRequestApprovalSchemes sets GrantRequestApprovalSchemes field to given value.
|
||||
|
||||
### HasGrantRequestApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRequestConfig) HasGrantRequestApprovalSchemes() bool`
|
||||
|
||||
HasGrantRequestApprovalSchemes returns a boolean if a field has been set.
|
||||
|
||||
### SetGrantRequestApprovalSchemesNil
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetGrantRequestApprovalSchemesNil(b bool)`
|
||||
|
||||
SetGrantRequestApprovalSchemesNil sets the value for GrantRequestApprovalSchemes to be an explicit nil
|
||||
|
||||
### UnsetGrantRequestApprovalSchemes
|
||||
`func (o *EntitlementRequestConfig) UnsetGrantRequestApprovalSchemes()`
|
||||
|
||||
UnsetGrantRequestApprovalSchemes ensures that no value is present for GrantRequestApprovalSchemes, not even an explicit nil
|
||||
|
||||
|
||||
@@ -1,213 +0,0 @@
|
||||
---
|
||||
id: v2024-event-attributes
|
||||
title: EventAttributes
|
||||
pagination_label: EventAttributes
|
||||
sidebar_label: EventAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'EventAttributes', 'V2024EventAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/event-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'EventAttributes', 'V2024EventAttributes']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
@@ -1,182 +0,0 @@
|
||||
---
|
||||
id: v2024-external-attributes
|
||||
title: ExternalAttributes
|
||||
pagination_label: ExternalAttributes
|
||||
sidebar_label: ExternalAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ExternalAttributes', 'V2024ExternalAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/external-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'ExternalAttributes', 'V2024ExternalAttributes']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: v2024-federation-protocol-details
|
||||
title: FederationProtocolDetails
|
||||
pagination_label: FederationProtocolDetails
|
||||
sidebar_label: FederationProtocolDetails
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'FederationProtocolDetails', 'V2024FederationProtocolDetails']
|
||||
slug: /tools/sdk/go/v2024/models/federation-protocol-details
|
||||
tags: ['SDK', 'Software Development Kit', 'FederationProtocolDetails', 'V2024FederationProtocolDetails']
|
||||
---
|
||||
|
||||
# FederationProtocolDetails
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Role** | Pointer to **string** | Federation protocol role | [optional]
|
||||
**EntityId** | Pointer to **string** | An entity ID is a globally unique name for a SAML entity, either an Identity Provider (IDP) or a Service Provider (SP). | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewFederationProtocolDetails
|
||||
|
||||
`func NewFederationProtocolDetails() *FederationProtocolDetails`
|
||||
|
||||
NewFederationProtocolDetails instantiates a new FederationProtocolDetails 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
|
||||
|
||||
### NewFederationProtocolDetailsWithDefaults
|
||||
|
||||
`func NewFederationProtocolDetailsWithDefaults() *FederationProtocolDetails`
|
||||
|
||||
NewFederationProtocolDetailsWithDefaults instantiates a new FederationProtocolDetails 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
|
||||
|
||||
### GetRole
|
||||
|
||||
`func (o *FederationProtocolDetails) GetRole() string`
|
||||
|
||||
GetRole returns the Role field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleOk
|
||||
|
||||
`func (o *FederationProtocolDetails) GetRoleOk() (*string, bool)`
|
||||
|
||||
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRole
|
||||
|
||||
`func (o *FederationProtocolDetails) SetRole(v string)`
|
||||
|
||||
SetRole sets Role field to given value.
|
||||
|
||||
### HasRole
|
||||
|
||||
`func (o *FederationProtocolDetails) HasRole() bool`
|
||||
|
||||
HasRole returns a boolean if a field has been set.
|
||||
|
||||
### GetEntityId
|
||||
|
||||
`func (o *FederationProtocolDetails) GetEntityId() string`
|
||||
|
||||
GetEntityId returns the EntityId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEntityIdOk
|
||||
|
||||
`func (o *FederationProtocolDetails) GetEntityIdOk() (*string, bool)`
|
||||
|
||||
GetEntityIdOk returns a tuple with the EntityId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEntityId
|
||||
|
||||
`func (o *FederationProtocolDetails) SetEntityId(v string)`
|
||||
|
||||
SetEntityId sets EntityId field to given value.
|
||||
|
||||
### HasEntityId
|
||||
|
||||
`func (o *FederationProtocolDetails) HasEntityId() bool`
|
||||
|
||||
HasEntityId returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,771 @@
|
||||
---
|
||||
id: v2024-get-campaign200-response
|
||||
title: GetCampaign200Response
|
||||
pagination_label: GetCampaign200Response
|
||||
sidebar_label: GetCampaign200Response
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'GetCampaign200Response', 'V2024GetCampaign200Response']
|
||||
slug: /tools/sdk/go/v2024/models/get-campaign200-response
|
||||
tags: ['SDK', 'Software Development Kit', 'GetCampaign200Response', 'V2024GetCampaign200Response']
|
||||
---
|
||||
|
||||
# GetCampaign200Response
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **NullableString** | 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** | **NullableString** | 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 **NullableTime** | 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 **NullableString** | 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 **NullableTime** | Created time of the campaign | [optional] [readonly]
|
||||
**TotalCertifications** | Pointer to **NullableInt32** | The total number of certifications in this campaign. | [optional] [readonly]
|
||||
**CompletedCertifications** | Pointer to **NullableInt32** | 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 **NullableTime** | Modified time of the campaign | [optional] [readonly]
|
||||
**Filter** | Pointer to [**NullableCampaignAllOfFilter**](campaign-all-of-filter) | | [optional]
|
||||
**SunsetCommentsRequired** | Pointer to **bool** | Determines if comments on sunset date changes are required. | [optional] [default to true]
|
||||
**SourceOwnerCampaignInfo** | Pointer to [**NullableCampaignAllOfSourceOwnerCampaignInfo**](campaign-all-of-source-owner-campaign-info) | | [optional]
|
||||
**SearchCampaignInfo** | Pointer to [**NullableCampaignAllOfSearchCampaignInfo**](campaign-all-of-search-campaign-info) | | [optional]
|
||||
**RoleCompositionCampaignInfo** | Pointer to [**NullableCampaignAllOfRoleCompositionCampaignInfo**](campaign-all-of-role-composition-campaign-info) | | [optional]
|
||||
**MachineAccountCampaignInfo** | Pointer to [**NullableCampaignAllOfMachineAccountCampaignInfo**](campaign-all-of-machine-account-campaign-info) | | [optional]
|
||||
**SourcesWithOrphanEntitlements** | Pointer to [**[]CampaignAllOfSourcesWithOrphanEntitlements**](campaign-all-of-sources-with-orphan-entitlements) | A list of sources in the campaign that contain \\\"orphan entitlements\\\" (entitlements without a corresponding Managed Attribute). An empty list indicates the campaign has no orphan entitlements. Null indicates there may be unknown orphan entitlements in the campaign (the campaign was created before this feature was implemented). | [optional] [readonly]
|
||||
**MandatoryCommentRequirement** | Pointer to **string** | Determines whether comments are required for decisions during certification reviews. You can require comments for all decisions, revoke-only decisions, or no decisions. By default, comments are not required for decisions. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewGetCampaign200Response
|
||||
|
||||
`func NewGetCampaign200Response(name string, description NullableString, type_ string, ) *GetCampaign200Response`
|
||||
|
||||
NewGetCampaign200Response instantiates a new GetCampaign200Response 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
|
||||
|
||||
### NewGetCampaign200ResponseWithDefaults
|
||||
|
||||
`func NewGetCampaign200ResponseWithDefaults() *GetCampaign200Response`
|
||||
|
||||
NewGetCampaign200ResponseWithDefaults instantiates a new GetCampaign200Response 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 *GetCampaign200Response) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *GetCampaign200Response) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### SetIdNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetIdNil(b bool)`
|
||||
|
||||
SetIdNil sets the value for Id to be an explicit nil
|
||||
|
||||
### UnsetId
|
||||
`func (o *GetCampaign200Response) UnsetId()`
|
||||
|
||||
UnsetId ensures that no value is present for Id, not even an explicit nil
|
||||
### GetName
|
||||
|
||||
`func (o *GetCampaign200Response) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
|
||||
### GetDescription
|
||||
|
||||
`func (o *GetCampaign200Response) GetDescription() string`
|
||||
|
||||
GetDescription returns the Description field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDescriptionOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetDescription(v string)`
|
||||
|
||||
SetDescription sets Description field to given value.
|
||||
|
||||
|
||||
### SetDescriptionNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetDescriptionNil(b bool)`
|
||||
|
||||
SetDescriptionNil sets the value for Description to be an explicit nil
|
||||
|
||||
### UnsetDescription
|
||||
`func (o *GetCampaign200Response) UnsetDescription()`
|
||||
|
||||
UnsetDescription ensures that no value is present for Description, not even an explicit nil
|
||||
### GetDeadline
|
||||
|
||||
`func (o *GetCampaign200Response) GetDeadline() SailPointTime`
|
||||
|
||||
GetDeadline returns the Deadline field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDeadlineOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetDeadline(v SailPointTime)`
|
||||
|
||||
SetDeadline sets Deadline field to given value.
|
||||
|
||||
### HasDeadline
|
||||
|
||||
`func (o *GetCampaign200Response) HasDeadline() bool`
|
||||
|
||||
HasDeadline returns a boolean if a field has been set.
|
||||
|
||||
### SetDeadlineNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetDeadlineNil(b bool)`
|
||||
|
||||
SetDeadlineNil sets the value for Deadline to be an explicit nil
|
||||
|
||||
### UnsetDeadline
|
||||
`func (o *GetCampaign200Response) UnsetDeadline()`
|
||||
|
||||
UnsetDeadline ensures that no value is present for Deadline, not even an explicit nil
|
||||
### GetType
|
||||
|
||||
`func (o *GetCampaign200Response) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *GetCampaign200Response) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
|
||||
### GetEmailNotificationEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) GetEmailNotificationEnabled() bool`
|
||||
|
||||
GetEmailNotificationEnabled returns the EmailNotificationEnabled field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEmailNotificationEnabledOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetEmailNotificationEnabledOk() (*bool, bool)`
|
||||
|
||||
GetEmailNotificationEnabledOk returns a tuple with the EmailNotificationEnabled field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEmailNotificationEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) SetEmailNotificationEnabled(v bool)`
|
||||
|
||||
SetEmailNotificationEnabled sets EmailNotificationEnabled field to given value.
|
||||
|
||||
### HasEmailNotificationEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) HasEmailNotificationEnabled() bool`
|
||||
|
||||
HasEmailNotificationEnabled returns a boolean if a field has been set.
|
||||
|
||||
### GetAutoRevokeAllowed
|
||||
|
||||
`func (o *GetCampaign200Response) GetAutoRevokeAllowed() bool`
|
||||
|
||||
GetAutoRevokeAllowed returns the AutoRevokeAllowed field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAutoRevokeAllowedOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetAutoRevokeAllowedOk() (*bool, bool)`
|
||||
|
||||
GetAutoRevokeAllowedOk returns a tuple with the AutoRevokeAllowed field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAutoRevokeAllowed
|
||||
|
||||
`func (o *GetCampaign200Response) SetAutoRevokeAllowed(v bool)`
|
||||
|
||||
SetAutoRevokeAllowed sets AutoRevokeAllowed field to given value.
|
||||
|
||||
### HasAutoRevokeAllowed
|
||||
|
||||
`func (o *GetCampaign200Response) HasAutoRevokeAllowed() bool`
|
||||
|
||||
HasAutoRevokeAllowed returns a boolean if a field has been set.
|
||||
|
||||
### GetRecommendationsEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) GetRecommendationsEnabled() bool`
|
||||
|
||||
GetRecommendationsEnabled returns the RecommendationsEnabled field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRecommendationsEnabledOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetRecommendationsEnabledOk() (*bool, bool)`
|
||||
|
||||
GetRecommendationsEnabledOk returns a tuple with the RecommendationsEnabled field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRecommendationsEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) SetRecommendationsEnabled(v bool)`
|
||||
|
||||
SetRecommendationsEnabled sets RecommendationsEnabled field to given value.
|
||||
|
||||
### HasRecommendationsEnabled
|
||||
|
||||
`func (o *GetCampaign200Response) HasRecommendationsEnabled() bool`
|
||||
|
||||
HasRecommendationsEnabled returns a boolean if a field has been set.
|
||||
|
||||
### GetStatus
|
||||
|
||||
`func (o *GetCampaign200Response) GetStatus() string`
|
||||
|
||||
GetStatus returns the Status field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStatusOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetStatusOk() (*string, bool)`
|
||||
|
||||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStatus
|
||||
|
||||
`func (o *GetCampaign200Response) SetStatus(v string)`
|
||||
|
||||
SetStatus sets Status field to given value.
|
||||
|
||||
### HasStatus
|
||||
|
||||
`func (o *GetCampaign200Response) HasStatus() bool`
|
||||
|
||||
HasStatus returns a boolean if a field has been set.
|
||||
|
||||
### SetStatusNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetStatusNil(b bool)`
|
||||
|
||||
SetStatusNil sets the value for Status to be an explicit nil
|
||||
|
||||
### UnsetStatus
|
||||
`func (o *GetCampaign200Response) UnsetStatus()`
|
||||
|
||||
UnsetStatus ensures that no value is present for Status, not even an explicit nil
|
||||
### GetCorrelatedStatus
|
||||
|
||||
`func (o *GetCampaign200Response) GetCorrelatedStatus() string`
|
||||
|
||||
GetCorrelatedStatus returns the CorrelatedStatus field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCorrelatedStatusOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetCorrelatedStatusOk() (*string, bool)`
|
||||
|
||||
GetCorrelatedStatusOk returns a tuple with the CorrelatedStatus field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCorrelatedStatus
|
||||
|
||||
`func (o *GetCampaign200Response) SetCorrelatedStatus(v string)`
|
||||
|
||||
SetCorrelatedStatus sets CorrelatedStatus field to given value.
|
||||
|
||||
### HasCorrelatedStatus
|
||||
|
||||
`func (o *GetCampaign200Response) HasCorrelatedStatus() bool`
|
||||
|
||||
HasCorrelatedStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *GetCampaign200Response) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
### HasCreated
|
||||
|
||||
`func (o *GetCampaign200Response) HasCreated() bool`
|
||||
|
||||
HasCreated returns a boolean if a field has been set.
|
||||
|
||||
### SetCreatedNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetCreatedNil(b bool)`
|
||||
|
||||
SetCreatedNil sets the value for Created to be an explicit nil
|
||||
|
||||
### UnsetCreated
|
||||
`func (o *GetCampaign200Response) UnsetCreated()`
|
||||
|
||||
UnsetCreated ensures that no value is present for Created, not even an explicit nil
|
||||
### GetTotalCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) GetTotalCertifications() int32`
|
||||
|
||||
GetTotalCertifications returns the TotalCertifications field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTotalCertificationsOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetTotalCertificationsOk() (*int32, bool)`
|
||||
|
||||
GetTotalCertificationsOk returns a tuple with the TotalCertifications field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTotalCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) SetTotalCertifications(v int32)`
|
||||
|
||||
SetTotalCertifications sets TotalCertifications field to given value.
|
||||
|
||||
### HasTotalCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) HasTotalCertifications() bool`
|
||||
|
||||
HasTotalCertifications returns a boolean if a field has been set.
|
||||
|
||||
### SetTotalCertificationsNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetTotalCertificationsNil(b bool)`
|
||||
|
||||
SetTotalCertificationsNil sets the value for TotalCertifications to be an explicit nil
|
||||
|
||||
### UnsetTotalCertifications
|
||||
`func (o *GetCampaign200Response) UnsetTotalCertifications()`
|
||||
|
||||
UnsetTotalCertifications ensures that no value is present for TotalCertifications, not even an explicit nil
|
||||
### GetCompletedCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) GetCompletedCertifications() int32`
|
||||
|
||||
GetCompletedCertifications returns the CompletedCertifications field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCompletedCertificationsOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetCompletedCertificationsOk() (*int32, bool)`
|
||||
|
||||
GetCompletedCertificationsOk returns a tuple with the CompletedCertifications field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCompletedCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) SetCompletedCertifications(v int32)`
|
||||
|
||||
SetCompletedCertifications sets CompletedCertifications field to given value.
|
||||
|
||||
### HasCompletedCertifications
|
||||
|
||||
`func (o *GetCampaign200Response) HasCompletedCertifications() bool`
|
||||
|
||||
HasCompletedCertifications returns a boolean if a field has been set.
|
||||
|
||||
### SetCompletedCertificationsNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetCompletedCertificationsNil(b bool)`
|
||||
|
||||
SetCompletedCertificationsNil sets the value for CompletedCertifications to be an explicit nil
|
||||
|
||||
### UnsetCompletedCertifications
|
||||
`func (o *GetCampaign200Response) UnsetCompletedCertifications()`
|
||||
|
||||
UnsetCompletedCertifications ensures that no value is present for CompletedCertifications, not even an explicit nil
|
||||
### GetAlerts
|
||||
|
||||
`func (o *GetCampaign200Response) GetAlerts() []CampaignAlert`
|
||||
|
||||
GetAlerts returns the Alerts field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAlertsOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetAlertsOk() (*[]CampaignAlert, bool)`
|
||||
|
||||
GetAlertsOk returns a tuple with the Alerts field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAlerts
|
||||
|
||||
`func (o *GetCampaign200Response) SetAlerts(v []CampaignAlert)`
|
||||
|
||||
SetAlerts sets Alerts field to given value.
|
||||
|
||||
### HasAlerts
|
||||
|
||||
`func (o *GetCampaign200Response) HasAlerts() bool`
|
||||
|
||||
HasAlerts returns a boolean if a field has been set.
|
||||
|
||||
### SetAlertsNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetAlertsNil(b bool)`
|
||||
|
||||
SetAlertsNil sets the value for Alerts to be an explicit nil
|
||||
|
||||
### UnsetAlerts
|
||||
`func (o *GetCampaign200Response) UnsetAlerts()`
|
||||
|
||||
UnsetAlerts ensures that no value is present for Alerts, not even an explicit nil
|
||||
### GetModified
|
||||
|
||||
`func (o *GetCampaign200Response) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *GetCampaign200Response) 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 *GetCampaign200Response) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
### HasModified
|
||||
|
||||
`func (o *GetCampaign200Response) HasModified() bool`
|
||||
|
||||
HasModified returns a boolean if a field has been set.
|
||||
|
||||
### SetModifiedNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetModifiedNil(b bool)`
|
||||
|
||||
SetModifiedNil sets the value for Modified to be an explicit nil
|
||||
|
||||
### UnsetModified
|
||||
`func (o *GetCampaign200Response) UnsetModified()`
|
||||
|
||||
UnsetModified ensures that no value is present for Modified, not even an explicit nil
|
||||
### GetFilter
|
||||
|
||||
`func (o *GetCampaign200Response) GetFilter() CampaignAllOfFilter`
|
||||
|
||||
GetFilter returns the Filter field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFilterOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetFilterOk() (*CampaignAllOfFilter, 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 *GetCampaign200Response) SetFilter(v CampaignAllOfFilter)`
|
||||
|
||||
SetFilter sets Filter field to given value.
|
||||
|
||||
### HasFilter
|
||||
|
||||
`func (o *GetCampaign200Response) HasFilter() bool`
|
||||
|
||||
HasFilter returns a boolean if a field has been set.
|
||||
|
||||
### SetFilterNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetFilterNil(b bool)`
|
||||
|
||||
SetFilterNil sets the value for Filter to be an explicit nil
|
||||
|
||||
### UnsetFilter
|
||||
`func (o *GetCampaign200Response) UnsetFilter()`
|
||||
|
||||
UnsetFilter ensures that no value is present for Filter, not even an explicit nil
|
||||
### GetSunsetCommentsRequired
|
||||
|
||||
`func (o *GetCampaign200Response) GetSunsetCommentsRequired() bool`
|
||||
|
||||
GetSunsetCommentsRequired returns the SunsetCommentsRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSunsetCommentsRequiredOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetSunsetCommentsRequiredOk() (*bool, bool)`
|
||||
|
||||
GetSunsetCommentsRequiredOk returns a tuple with the SunsetCommentsRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSunsetCommentsRequired
|
||||
|
||||
`func (o *GetCampaign200Response) SetSunsetCommentsRequired(v bool)`
|
||||
|
||||
SetSunsetCommentsRequired sets SunsetCommentsRequired field to given value.
|
||||
|
||||
### HasSunsetCommentsRequired
|
||||
|
||||
`func (o *GetCampaign200Response) HasSunsetCommentsRequired() bool`
|
||||
|
||||
HasSunsetCommentsRequired returns a boolean if a field has been set.
|
||||
|
||||
### GetSourceOwnerCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) GetSourceOwnerCampaignInfo() CampaignAllOfSourceOwnerCampaignInfo`
|
||||
|
||||
GetSourceOwnerCampaignInfo returns the SourceOwnerCampaignInfo field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceOwnerCampaignInfoOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetSourceOwnerCampaignInfoOk() (*CampaignAllOfSourceOwnerCampaignInfo, bool)`
|
||||
|
||||
GetSourceOwnerCampaignInfoOk returns a tuple with the SourceOwnerCampaignInfo field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceOwnerCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) SetSourceOwnerCampaignInfo(v CampaignAllOfSourceOwnerCampaignInfo)`
|
||||
|
||||
SetSourceOwnerCampaignInfo sets SourceOwnerCampaignInfo field to given value.
|
||||
|
||||
### HasSourceOwnerCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) HasSourceOwnerCampaignInfo() bool`
|
||||
|
||||
HasSourceOwnerCampaignInfo returns a boolean if a field has been set.
|
||||
|
||||
### SetSourceOwnerCampaignInfoNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetSourceOwnerCampaignInfoNil(b bool)`
|
||||
|
||||
SetSourceOwnerCampaignInfoNil sets the value for SourceOwnerCampaignInfo to be an explicit nil
|
||||
|
||||
### UnsetSourceOwnerCampaignInfo
|
||||
`func (o *GetCampaign200Response) UnsetSourceOwnerCampaignInfo()`
|
||||
|
||||
UnsetSourceOwnerCampaignInfo ensures that no value is present for SourceOwnerCampaignInfo, not even an explicit nil
|
||||
### GetSearchCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) GetSearchCampaignInfo() CampaignAllOfSearchCampaignInfo`
|
||||
|
||||
GetSearchCampaignInfo returns the SearchCampaignInfo field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSearchCampaignInfoOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetSearchCampaignInfoOk() (*CampaignAllOfSearchCampaignInfo, bool)`
|
||||
|
||||
GetSearchCampaignInfoOk returns a tuple with the SearchCampaignInfo field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSearchCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) SetSearchCampaignInfo(v CampaignAllOfSearchCampaignInfo)`
|
||||
|
||||
SetSearchCampaignInfo sets SearchCampaignInfo field to given value.
|
||||
|
||||
### HasSearchCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) HasSearchCampaignInfo() bool`
|
||||
|
||||
HasSearchCampaignInfo returns a boolean if a field has been set.
|
||||
|
||||
### SetSearchCampaignInfoNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetSearchCampaignInfoNil(b bool)`
|
||||
|
||||
SetSearchCampaignInfoNil sets the value for SearchCampaignInfo to be an explicit nil
|
||||
|
||||
### UnsetSearchCampaignInfo
|
||||
`func (o *GetCampaign200Response) UnsetSearchCampaignInfo()`
|
||||
|
||||
UnsetSearchCampaignInfo ensures that no value is present for SearchCampaignInfo, not even an explicit nil
|
||||
### GetRoleCompositionCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) GetRoleCompositionCampaignInfo() CampaignAllOfRoleCompositionCampaignInfo`
|
||||
|
||||
GetRoleCompositionCampaignInfo returns the RoleCompositionCampaignInfo field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleCompositionCampaignInfoOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetRoleCompositionCampaignInfoOk() (*CampaignAllOfRoleCompositionCampaignInfo, bool)`
|
||||
|
||||
GetRoleCompositionCampaignInfoOk returns a tuple with the RoleCompositionCampaignInfo field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRoleCompositionCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) SetRoleCompositionCampaignInfo(v CampaignAllOfRoleCompositionCampaignInfo)`
|
||||
|
||||
SetRoleCompositionCampaignInfo sets RoleCompositionCampaignInfo field to given value.
|
||||
|
||||
### HasRoleCompositionCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) HasRoleCompositionCampaignInfo() bool`
|
||||
|
||||
HasRoleCompositionCampaignInfo returns a boolean if a field has been set.
|
||||
|
||||
### SetRoleCompositionCampaignInfoNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetRoleCompositionCampaignInfoNil(b bool)`
|
||||
|
||||
SetRoleCompositionCampaignInfoNil sets the value for RoleCompositionCampaignInfo to be an explicit nil
|
||||
|
||||
### UnsetRoleCompositionCampaignInfo
|
||||
`func (o *GetCampaign200Response) UnsetRoleCompositionCampaignInfo()`
|
||||
|
||||
UnsetRoleCompositionCampaignInfo ensures that no value is present for RoleCompositionCampaignInfo, not even an explicit nil
|
||||
### GetMachineAccountCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) GetMachineAccountCampaignInfo() CampaignAllOfMachineAccountCampaignInfo`
|
||||
|
||||
GetMachineAccountCampaignInfo returns the MachineAccountCampaignInfo field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMachineAccountCampaignInfoOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetMachineAccountCampaignInfoOk() (*CampaignAllOfMachineAccountCampaignInfo, bool)`
|
||||
|
||||
GetMachineAccountCampaignInfoOk returns a tuple with the MachineAccountCampaignInfo field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMachineAccountCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) SetMachineAccountCampaignInfo(v CampaignAllOfMachineAccountCampaignInfo)`
|
||||
|
||||
SetMachineAccountCampaignInfo sets MachineAccountCampaignInfo field to given value.
|
||||
|
||||
### HasMachineAccountCampaignInfo
|
||||
|
||||
`func (o *GetCampaign200Response) HasMachineAccountCampaignInfo() bool`
|
||||
|
||||
HasMachineAccountCampaignInfo returns a boolean if a field has been set.
|
||||
|
||||
### SetMachineAccountCampaignInfoNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetMachineAccountCampaignInfoNil(b bool)`
|
||||
|
||||
SetMachineAccountCampaignInfoNil sets the value for MachineAccountCampaignInfo to be an explicit nil
|
||||
|
||||
### UnsetMachineAccountCampaignInfo
|
||||
`func (o *GetCampaign200Response) UnsetMachineAccountCampaignInfo()`
|
||||
|
||||
UnsetMachineAccountCampaignInfo ensures that no value is present for MachineAccountCampaignInfo, not even an explicit nil
|
||||
### GetSourcesWithOrphanEntitlements
|
||||
|
||||
`func (o *GetCampaign200Response) GetSourcesWithOrphanEntitlements() []CampaignAllOfSourcesWithOrphanEntitlements`
|
||||
|
||||
GetSourcesWithOrphanEntitlements returns the SourcesWithOrphanEntitlements field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourcesWithOrphanEntitlementsOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetSourcesWithOrphanEntitlementsOk() (*[]CampaignAllOfSourcesWithOrphanEntitlements, bool)`
|
||||
|
||||
GetSourcesWithOrphanEntitlementsOk returns a tuple with the SourcesWithOrphanEntitlements field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourcesWithOrphanEntitlements
|
||||
|
||||
`func (o *GetCampaign200Response) SetSourcesWithOrphanEntitlements(v []CampaignAllOfSourcesWithOrphanEntitlements)`
|
||||
|
||||
SetSourcesWithOrphanEntitlements sets SourcesWithOrphanEntitlements field to given value.
|
||||
|
||||
### HasSourcesWithOrphanEntitlements
|
||||
|
||||
`func (o *GetCampaign200Response) HasSourcesWithOrphanEntitlements() bool`
|
||||
|
||||
HasSourcesWithOrphanEntitlements returns a boolean if a field has been set.
|
||||
|
||||
### SetSourcesWithOrphanEntitlementsNil
|
||||
|
||||
`func (o *GetCampaign200Response) SetSourcesWithOrphanEntitlementsNil(b bool)`
|
||||
|
||||
SetSourcesWithOrphanEntitlementsNil sets the value for SourcesWithOrphanEntitlements to be an explicit nil
|
||||
|
||||
### UnsetSourcesWithOrphanEntitlements
|
||||
`func (o *GetCampaign200Response) UnsetSourcesWithOrphanEntitlements()`
|
||||
|
||||
UnsetSourcesWithOrphanEntitlements ensures that no value is present for SourcesWithOrphanEntitlements, not even an explicit nil
|
||||
### GetMandatoryCommentRequirement
|
||||
|
||||
`func (o *GetCampaign200Response) GetMandatoryCommentRequirement() string`
|
||||
|
||||
GetMandatoryCommentRequirement returns the MandatoryCommentRequirement field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMandatoryCommentRequirementOk
|
||||
|
||||
`func (o *GetCampaign200Response) GetMandatoryCommentRequirementOk() (*string, bool)`
|
||||
|
||||
GetMandatoryCommentRequirementOk returns a tuple with the MandatoryCommentRequirement field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMandatoryCommentRequirement
|
||||
|
||||
`func (o *GetCampaign200Response) SetMandatoryCommentRequirement(v string)`
|
||||
|
||||
SetMandatoryCommentRequirement sets MandatoryCommentRequirement field to given value.
|
||||
|
||||
### HasMandatoryCommentRequirement
|
||||
|
||||
`func (o *GetCampaign200Response) HasMandatoryCommentRequirement() bool`
|
||||
|
||||
HasMandatoryCommentRequirement returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,168 @@
|
||||
---
|
||||
id: v2024-identity-account-selections
|
||||
title: IdentityAccountSelections
|
||||
pagination_label: IdentityAccountSelections
|
||||
sidebar_label: IdentityAccountSelections
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'IdentityAccountSelections', 'V2024IdentityAccountSelections']
|
||||
slug: /tools/sdk/go/v2024/models/identity-account-selections
|
||||
tags: ['SDK', 'Software Development Kit', 'IdentityAccountSelections', 'V2024IdentityAccountSelections']
|
||||
---
|
||||
|
||||
# IdentityAccountSelections
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**RequestedItems** | Pointer to [**[]RequestedItemAccountSelections**](requested-item-account-selections) | Available account selections for the identity, per requested item | [optional]
|
||||
**AccountsSelectionRequired** | Pointer to **bool** | A boolean indicating whether any account selections will be required for the user to raise an access request | [optional] [default to false]
|
||||
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
|
||||
**Id** | Pointer to **string** | The identity id for the user | [optional]
|
||||
**Name** | Pointer to **string** | The name of the identity | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewIdentityAccountSelections
|
||||
|
||||
`func NewIdentityAccountSelections() *IdentityAccountSelections`
|
||||
|
||||
NewIdentityAccountSelections instantiates a new IdentityAccountSelections 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
|
||||
|
||||
### NewIdentityAccountSelectionsWithDefaults
|
||||
|
||||
`func NewIdentityAccountSelectionsWithDefaults() *IdentityAccountSelections`
|
||||
|
||||
NewIdentityAccountSelectionsWithDefaults instantiates a new IdentityAccountSelections 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
|
||||
|
||||
### GetRequestedItems
|
||||
|
||||
`func (o *IdentityAccountSelections) GetRequestedItems() []RequestedItemAccountSelections`
|
||||
|
||||
GetRequestedItems returns the RequestedItems field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestedItemsOk
|
||||
|
||||
`func (o *IdentityAccountSelections) GetRequestedItemsOk() (*[]RequestedItemAccountSelections, bool)`
|
||||
|
||||
GetRequestedItemsOk returns a tuple with the RequestedItems field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestedItems
|
||||
|
||||
`func (o *IdentityAccountSelections) SetRequestedItems(v []RequestedItemAccountSelections)`
|
||||
|
||||
SetRequestedItems sets RequestedItems field to given value.
|
||||
|
||||
### HasRequestedItems
|
||||
|
||||
`func (o *IdentityAccountSelections) HasRequestedItems() bool`
|
||||
|
||||
HasRequestedItems returns a boolean if a field has been set.
|
||||
|
||||
### GetAccountsSelectionRequired
|
||||
|
||||
`func (o *IdentityAccountSelections) GetAccountsSelectionRequired() bool`
|
||||
|
||||
GetAccountsSelectionRequired returns the AccountsSelectionRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountsSelectionRequiredOk
|
||||
|
||||
`func (o *IdentityAccountSelections) GetAccountsSelectionRequiredOk() (*bool, bool)`
|
||||
|
||||
GetAccountsSelectionRequiredOk returns a tuple with the AccountsSelectionRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccountsSelectionRequired
|
||||
|
||||
`func (o *IdentityAccountSelections) SetAccountsSelectionRequired(v bool)`
|
||||
|
||||
SetAccountsSelectionRequired sets AccountsSelectionRequired field to given value.
|
||||
|
||||
### HasAccountsSelectionRequired
|
||||
|
||||
`func (o *IdentityAccountSelections) HasAccountsSelectionRequired() bool`
|
||||
|
||||
HasAccountsSelectionRequired returns a boolean if a field has been set.
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *IdentityAccountSelections) GetType() DtoType`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *IdentityAccountSelections) GetTypeOk() (*DtoType, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *IdentityAccountSelections) SetType(v DtoType)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *IdentityAccountSelections) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *IdentityAccountSelections) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *IdentityAccountSelections) 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 *IdentityAccountSelections) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *IdentityAccountSelections) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetName
|
||||
|
||||
`func (o *IdentityAccountSelections) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *IdentityAccountSelections) 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 *IdentityAccountSelections) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *IdentityAccountSelections) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
|
||||
397
docs/tools/sdk/go/Reference/V2024/Models/IdpDetails.md
Normal file
397
docs/tools/sdk/go/Reference/V2024/Models/IdpDetails.md
Normal file
@@ -0,0 +1,397 @@
|
||||
---
|
||||
id: v2024-idp-details
|
||||
title: IdpDetails
|
||||
pagination_label: IdpDetails
|
||||
sidebar_label: IdpDetails
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'IdpDetails', 'V2024IdpDetails']
|
||||
slug: /tools/sdk/go/v2024/models/idp-details
|
||||
tags: ['SDK', 'Software Development Kit', 'IdpDetails', 'V2024IdpDetails']
|
||||
---
|
||||
|
||||
# IdpDetails
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Role** | Pointer to **string** | Federation protocol role | [optional]
|
||||
**EntityId** | Pointer to **string** | An entity ID is a globally unique name for a SAML entity, either an Identity Provider (IDP) or a Service Provider (SP). | [optional]
|
||||
**Binding** | Pointer to **string** | Defines the binding used for the SAML flow. Used with IDP configurations. | [optional]
|
||||
**AuthnContext** | Pointer to **string** | Specifies the SAML authentication method to use. Used with IDP configurations. | [optional]
|
||||
**LogoutUrl** | Pointer to **string** | The IDP logout URL. Used with IDP configurations. | [optional]
|
||||
**IncludeAuthnContext** | Pointer to **bool** | Determines if the configured AuthnContext should be used or the default. Used with IDP configurations. | [optional] [default to false]
|
||||
**NameId** | Pointer to **string** | The name id format to use. Used with IDP configurations. | [optional]
|
||||
**JitConfiguration** | Pointer to [**JITConfiguration**](jit-configuration) | | [optional]
|
||||
**Cert** | Pointer to **string** | The Base64-encoded certificate used by the IDP. Used with IDP configurations. | [optional]
|
||||
**LoginUrlPost** | Pointer to **string** | The IDP POST URL, used with IDP HTTP-POST bindings for IDP-initiated logins. Used with IDP configurations. | [optional]
|
||||
**LoginUrlRedirect** | Pointer to **string** | The IDP Redirect URL. Used with IDP configurations. | [optional]
|
||||
**MappingAttribute** | **string** | Return the saml Id for the given user, based on the IDN as SP settings of the org. Used with IDP configurations. |
|
||||
**CertificateExpirationDate** | Pointer to **string** | The expiration date extracted from the certificate. | [optional]
|
||||
**CertificateName** | Pointer to **string** | The name extracted from the certificate. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewIdpDetails
|
||||
|
||||
`func NewIdpDetails(mappingAttribute string, ) *IdpDetails`
|
||||
|
||||
NewIdpDetails instantiates a new IdpDetails 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
|
||||
|
||||
### NewIdpDetailsWithDefaults
|
||||
|
||||
`func NewIdpDetailsWithDefaults() *IdpDetails`
|
||||
|
||||
NewIdpDetailsWithDefaults instantiates a new IdpDetails 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
|
||||
|
||||
### GetRole
|
||||
|
||||
`func (o *IdpDetails) GetRole() string`
|
||||
|
||||
GetRole returns the Role field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleOk
|
||||
|
||||
`func (o *IdpDetails) GetRoleOk() (*string, bool)`
|
||||
|
||||
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRole
|
||||
|
||||
`func (o *IdpDetails) SetRole(v string)`
|
||||
|
||||
SetRole sets Role field to given value.
|
||||
|
||||
### HasRole
|
||||
|
||||
`func (o *IdpDetails) HasRole() bool`
|
||||
|
||||
HasRole returns a boolean if a field has been set.
|
||||
|
||||
### GetEntityId
|
||||
|
||||
`func (o *IdpDetails) GetEntityId() string`
|
||||
|
||||
GetEntityId returns the EntityId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEntityIdOk
|
||||
|
||||
`func (o *IdpDetails) GetEntityIdOk() (*string, bool)`
|
||||
|
||||
GetEntityIdOk returns a tuple with the EntityId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEntityId
|
||||
|
||||
`func (o *IdpDetails) SetEntityId(v string)`
|
||||
|
||||
SetEntityId sets EntityId field to given value.
|
||||
|
||||
### HasEntityId
|
||||
|
||||
`func (o *IdpDetails) HasEntityId() bool`
|
||||
|
||||
HasEntityId returns a boolean if a field has been set.
|
||||
|
||||
### GetBinding
|
||||
|
||||
`func (o *IdpDetails) GetBinding() string`
|
||||
|
||||
GetBinding returns the Binding field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBindingOk
|
||||
|
||||
`func (o *IdpDetails) GetBindingOk() (*string, bool)`
|
||||
|
||||
GetBindingOk returns a tuple with the Binding field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBinding
|
||||
|
||||
`func (o *IdpDetails) SetBinding(v string)`
|
||||
|
||||
SetBinding sets Binding field to given value.
|
||||
|
||||
### HasBinding
|
||||
|
||||
`func (o *IdpDetails) HasBinding() bool`
|
||||
|
||||
HasBinding returns a boolean if a field has been set.
|
||||
|
||||
### GetAuthnContext
|
||||
|
||||
`func (o *IdpDetails) GetAuthnContext() string`
|
||||
|
||||
GetAuthnContext returns the AuthnContext field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAuthnContextOk
|
||||
|
||||
`func (o *IdpDetails) GetAuthnContextOk() (*string, bool)`
|
||||
|
||||
GetAuthnContextOk returns a tuple with the AuthnContext field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAuthnContext
|
||||
|
||||
`func (o *IdpDetails) SetAuthnContext(v string)`
|
||||
|
||||
SetAuthnContext sets AuthnContext field to given value.
|
||||
|
||||
### HasAuthnContext
|
||||
|
||||
`func (o *IdpDetails) HasAuthnContext() bool`
|
||||
|
||||
HasAuthnContext returns a boolean if a field has been set.
|
||||
|
||||
### GetLogoutUrl
|
||||
|
||||
`func (o *IdpDetails) GetLogoutUrl() string`
|
||||
|
||||
GetLogoutUrl returns the LogoutUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLogoutUrlOk
|
||||
|
||||
`func (o *IdpDetails) GetLogoutUrlOk() (*string, bool)`
|
||||
|
||||
GetLogoutUrlOk returns a tuple with the LogoutUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLogoutUrl
|
||||
|
||||
`func (o *IdpDetails) SetLogoutUrl(v string)`
|
||||
|
||||
SetLogoutUrl sets LogoutUrl field to given value.
|
||||
|
||||
### HasLogoutUrl
|
||||
|
||||
`func (o *IdpDetails) HasLogoutUrl() bool`
|
||||
|
||||
HasLogoutUrl returns a boolean if a field has been set.
|
||||
|
||||
### GetIncludeAuthnContext
|
||||
|
||||
`func (o *IdpDetails) GetIncludeAuthnContext() bool`
|
||||
|
||||
GetIncludeAuthnContext returns the IncludeAuthnContext field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIncludeAuthnContextOk
|
||||
|
||||
`func (o *IdpDetails) GetIncludeAuthnContextOk() (*bool, bool)`
|
||||
|
||||
GetIncludeAuthnContextOk returns a tuple with the IncludeAuthnContext field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIncludeAuthnContext
|
||||
|
||||
`func (o *IdpDetails) SetIncludeAuthnContext(v bool)`
|
||||
|
||||
SetIncludeAuthnContext sets IncludeAuthnContext field to given value.
|
||||
|
||||
### HasIncludeAuthnContext
|
||||
|
||||
`func (o *IdpDetails) HasIncludeAuthnContext() bool`
|
||||
|
||||
HasIncludeAuthnContext returns a boolean if a field has been set.
|
||||
|
||||
### GetNameId
|
||||
|
||||
`func (o *IdpDetails) GetNameId() string`
|
||||
|
||||
GetNameId returns the NameId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameIdOk
|
||||
|
||||
`func (o *IdpDetails) GetNameIdOk() (*string, bool)`
|
||||
|
||||
GetNameIdOk returns a tuple with the NameId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetNameId
|
||||
|
||||
`func (o *IdpDetails) SetNameId(v string)`
|
||||
|
||||
SetNameId sets NameId field to given value.
|
||||
|
||||
### HasNameId
|
||||
|
||||
`func (o *IdpDetails) HasNameId() bool`
|
||||
|
||||
HasNameId returns a boolean if a field has been set.
|
||||
|
||||
### GetJitConfiguration
|
||||
|
||||
`func (o *IdpDetails) GetJitConfiguration() JITConfiguration`
|
||||
|
||||
GetJitConfiguration returns the JitConfiguration field if non-nil, zero value otherwise.
|
||||
|
||||
### GetJitConfigurationOk
|
||||
|
||||
`func (o *IdpDetails) GetJitConfigurationOk() (*JITConfiguration, bool)`
|
||||
|
||||
GetJitConfigurationOk returns a tuple with the JitConfiguration field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetJitConfiguration
|
||||
|
||||
`func (o *IdpDetails) SetJitConfiguration(v JITConfiguration)`
|
||||
|
||||
SetJitConfiguration sets JitConfiguration field to given value.
|
||||
|
||||
### HasJitConfiguration
|
||||
|
||||
`func (o *IdpDetails) HasJitConfiguration() bool`
|
||||
|
||||
HasJitConfiguration returns a boolean if a field has been set.
|
||||
|
||||
### GetCert
|
||||
|
||||
`func (o *IdpDetails) GetCert() string`
|
||||
|
||||
GetCert returns the Cert field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertOk
|
||||
|
||||
`func (o *IdpDetails) GetCertOk() (*string, bool)`
|
||||
|
||||
GetCertOk returns a tuple with the Cert field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCert
|
||||
|
||||
`func (o *IdpDetails) SetCert(v string)`
|
||||
|
||||
SetCert sets Cert field to given value.
|
||||
|
||||
### HasCert
|
||||
|
||||
`func (o *IdpDetails) HasCert() bool`
|
||||
|
||||
HasCert returns a boolean if a field has been set.
|
||||
|
||||
### GetLoginUrlPost
|
||||
|
||||
`func (o *IdpDetails) GetLoginUrlPost() string`
|
||||
|
||||
GetLoginUrlPost returns the LoginUrlPost field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLoginUrlPostOk
|
||||
|
||||
`func (o *IdpDetails) GetLoginUrlPostOk() (*string, bool)`
|
||||
|
||||
GetLoginUrlPostOk returns a tuple with the LoginUrlPost field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLoginUrlPost
|
||||
|
||||
`func (o *IdpDetails) SetLoginUrlPost(v string)`
|
||||
|
||||
SetLoginUrlPost sets LoginUrlPost field to given value.
|
||||
|
||||
### HasLoginUrlPost
|
||||
|
||||
`func (o *IdpDetails) HasLoginUrlPost() bool`
|
||||
|
||||
HasLoginUrlPost returns a boolean if a field has been set.
|
||||
|
||||
### GetLoginUrlRedirect
|
||||
|
||||
`func (o *IdpDetails) GetLoginUrlRedirect() string`
|
||||
|
||||
GetLoginUrlRedirect returns the LoginUrlRedirect field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLoginUrlRedirectOk
|
||||
|
||||
`func (o *IdpDetails) GetLoginUrlRedirectOk() (*string, bool)`
|
||||
|
||||
GetLoginUrlRedirectOk returns a tuple with the LoginUrlRedirect field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLoginUrlRedirect
|
||||
|
||||
`func (o *IdpDetails) SetLoginUrlRedirect(v string)`
|
||||
|
||||
SetLoginUrlRedirect sets LoginUrlRedirect field to given value.
|
||||
|
||||
### HasLoginUrlRedirect
|
||||
|
||||
`func (o *IdpDetails) HasLoginUrlRedirect() bool`
|
||||
|
||||
HasLoginUrlRedirect returns a boolean if a field has been set.
|
||||
|
||||
### GetMappingAttribute
|
||||
|
||||
`func (o *IdpDetails) GetMappingAttribute() string`
|
||||
|
||||
GetMappingAttribute returns the MappingAttribute field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMappingAttributeOk
|
||||
|
||||
`func (o *IdpDetails) GetMappingAttributeOk() (*string, bool)`
|
||||
|
||||
GetMappingAttributeOk returns a tuple with the MappingAttribute field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMappingAttribute
|
||||
|
||||
`func (o *IdpDetails) SetMappingAttribute(v string)`
|
||||
|
||||
SetMappingAttribute sets MappingAttribute field to given value.
|
||||
|
||||
|
||||
### GetCertificateExpirationDate
|
||||
|
||||
`func (o *IdpDetails) GetCertificateExpirationDate() string`
|
||||
|
||||
GetCertificateExpirationDate returns the CertificateExpirationDate field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertificateExpirationDateOk
|
||||
|
||||
`func (o *IdpDetails) GetCertificateExpirationDateOk() (*string, bool)`
|
||||
|
||||
GetCertificateExpirationDateOk returns a tuple with the CertificateExpirationDate field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCertificateExpirationDate
|
||||
|
||||
`func (o *IdpDetails) SetCertificateExpirationDate(v string)`
|
||||
|
||||
SetCertificateExpirationDate sets CertificateExpirationDate field to given value.
|
||||
|
||||
### HasCertificateExpirationDate
|
||||
|
||||
`func (o *IdpDetails) HasCertificateExpirationDate() bool`
|
||||
|
||||
HasCertificateExpirationDate returns a boolean if a field has been set.
|
||||
|
||||
### GetCertificateName
|
||||
|
||||
`func (o *IdpDetails) GetCertificateName() string`
|
||||
|
||||
GetCertificateName returns the CertificateName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertificateNameOk
|
||||
|
||||
`func (o *IdpDetails) GetCertificateNameOk() (*string, bool)`
|
||||
|
||||
GetCertificateNameOk returns a tuple with the CertificateName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCertificateName
|
||||
|
||||
`func (o *IdpDetails) SetCertificateName(v string)`
|
||||
|
||||
SetCertificateName sets CertificateName field to given value.
|
||||
|
||||
### HasCertificateName
|
||||
|
||||
`func (o *IdpDetails) HasCertificateName() bool`
|
||||
|
||||
HasCertificateName returns a boolean if a field has been set.
|
||||
|
||||
|
||||
116
docs/tools/sdk/go/Reference/V2024/Models/JITConfiguration.md
Normal file
116
docs/tools/sdk/go/Reference/V2024/Models/JITConfiguration.md
Normal file
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-jit-configuration
|
||||
title: JITConfiguration
|
||||
pagination_label: JITConfiguration
|
||||
sidebar_label: JITConfiguration
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'JITConfiguration', 'V2024JITConfiguration']
|
||||
slug: /tools/sdk/go/v2024/models/jit-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'JITConfiguration', 'V2024JITConfiguration']
|
||||
---
|
||||
|
||||
# JITConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Enabled** | Pointer to **bool** | The indicator for just-in-time provisioning enabled | [optional] [default to false]
|
||||
**SourceId** | Pointer to **string** | the sourceId that mapped to just-in-time provisioning configuration | [optional]
|
||||
**SourceAttributeMappings** | Pointer to **map[string]string** | A mapping of identity profile attribute names to SAML assertion attribute names | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewJITConfiguration
|
||||
|
||||
`func NewJITConfiguration() *JITConfiguration`
|
||||
|
||||
NewJITConfiguration instantiates a new JITConfiguration 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
|
||||
|
||||
### NewJITConfigurationWithDefaults
|
||||
|
||||
`func NewJITConfigurationWithDefaults() *JITConfiguration`
|
||||
|
||||
NewJITConfigurationWithDefaults instantiates a new JITConfiguration 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
|
||||
|
||||
### GetEnabled
|
||||
|
||||
`func (o *JITConfiguration) GetEnabled() bool`
|
||||
|
||||
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEnabledOk
|
||||
|
||||
`func (o *JITConfiguration) GetEnabledOk() (*bool, bool)`
|
||||
|
||||
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEnabled
|
||||
|
||||
`func (o *JITConfiguration) SetEnabled(v bool)`
|
||||
|
||||
SetEnabled sets Enabled field to given value.
|
||||
|
||||
### HasEnabled
|
||||
|
||||
`func (o *JITConfiguration) HasEnabled() bool`
|
||||
|
||||
HasEnabled returns a boolean if a field has been set.
|
||||
|
||||
### GetSourceId
|
||||
|
||||
`func (o *JITConfiguration) GetSourceId() string`
|
||||
|
||||
GetSourceId returns the SourceId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceIdOk
|
||||
|
||||
`func (o *JITConfiguration) GetSourceIdOk() (*string, bool)`
|
||||
|
||||
GetSourceIdOk returns a tuple with the SourceId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceId
|
||||
|
||||
`func (o *JITConfiguration) SetSourceId(v string)`
|
||||
|
||||
SetSourceId sets SourceId field to given value.
|
||||
|
||||
### HasSourceId
|
||||
|
||||
`func (o *JITConfiguration) HasSourceId() bool`
|
||||
|
||||
HasSourceId returns a boolean if a field has been set.
|
||||
|
||||
### GetSourceAttributeMappings
|
||||
|
||||
`func (o *JITConfiguration) GetSourceAttributeMappings() map[string]string`
|
||||
|
||||
GetSourceAttributeMappings returns the SourceAttributeMappings field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceAttributeMappingsOk
|
||||
|
||||
`func (o *JITConfiguration) GetSourceAttributeMappingsOk() (*map[string]string, bool)`
|
||||
|
||||
GetSourceAttributeMappingsOk returns a tuple with the SourceAttributeMappings field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceAttributeMappings
|
||||
|
||||
`func (o *JITConfiguration) SetSourceAttributeMappings(v map[string]string)`
|
||||
|
||||
SetSourceAttributeMappings sets SourceAttributeMappings field to given value.
|
||||
|
||||
### HasSourceAttributeMappings
|
||||
|
||||
`func (o *JITConfiguration) HasSourceAttributeMappings() bool`
|
||||
|
||||
HasSourceAttributeMappings returns a boolean if a field has been set.
|
||||
|
||||
|
||||
116
docs/tools/sdk/go/Reference/V2024/Models/LockoutConfiguration.md
Normal file
116
docs/tools/sdk/go/Reference/V2024/Models/LockoutConfiguration.md
Normal file
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-lockout-configuration
|
||||
title: LockoutConfiguration
|
||||
pagination_label: LockoutConfiguration
|
||||
sidebar_label: LockoutConfiguration
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'LockoutConfiguration', 'V2024LockoutConfiguration']
|
||||
slug: /tools/sdk/go/v2024/models/lockout-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'LockoutConfiguration', 'V2024LockoutConfiguration']
|
||||
---
|
||||
|
||||
# LockoutConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**MaximumAttempts** | Pointer to **int32** | The maximum attempts allowed before lockout occurs. | [optional]
|
||||
**LockoutDuration** | Pointer to **int32** | The total time in minutes a user will be locked out. | [optional]
|
||||
**LockoutWindow** | Pointer to **int32** | A rolling window where authentication attempts in a series count towards the maximum before lockout occurs. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewLockoutConfiguration
|
||||
|
||||
`func NewLockoutConfiguration() *LockoutConfiguration`
|
||||
|
||||
NewLockoutConfiguration instantiates a new LockoutConfiguration 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
|
||||
|
||||
### NewLockoutConfigurationWithDefaults
|
||||
|
||||
`func NewLockoutConfigurationWithDefaults() *LockoutConfiguration`
|
||||
|
||||
NewLockoutConfigurationWithDefaults instantiates a new LockoutConfiguration 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
|
||||
|
||||
### GetMaximumAttempts
|
||||
|
||||
`func (o *LockoutConfiguration) GetMaximumAttempts() int32`
|
||||
|
||||
GetMaximumAttempts returns the MaximumAttempts field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMaximumAttemptsOk
|
||||
|
||||
`func (o *LockoutConfiguration) GetMaximumAttemptsOk() (*int32, bool)`
|
||||
|
||||
GetMaximumAttemptsOk returns a tuple with the MaximumAttempts field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMaximumAttempts
|
||||
|
||||
`func (o *LockoutConfiguration) SetMaximumAttempts(v int32)`
|
||||
|
||||
SetMaximumAttempts sets MaximumAttempts field to given value.
|
||||
|
||||
### HasMaximumAttempts
|
||||
|
||||
`func (o *LockoutConfiguration) HasMaximumAttempts() bool`
|
||||
|
||||
HasMaximumAttempts returns a boolean if a field has been set.
|
||||
|
||||
### GetLockoutDuration
|
||||
|
||||
`func (o *LockoutConfiguration) GetLockoutDuration() int32`
|
||||
|
||||
GetLockoutDuration returns the LockoutDuration field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLockoutDurationOk
|
||||
|
||||
`func (o *LockoutConfiguration) GetLockoutDurationOk() (*int32, bool)`
|
||||
|
||||
GetLockoutDurationOk returns a tuple with the LockoutDuration field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLockoutDuration
|
||||
|
||||
`func (o *LockoutConfiguration) SetLockoutDuration(v int32)`
|
||||
|
||||
SetLockoutDuration sets LockoutDuration field to given value.
|
||||
|
||||
### HasLockoutDuration
|
||||
|
||||
`func (o *LockoutConfiguration) HasLockoutDuration() bool`
|
||||
|
||||
HasLockoutDuration returns a boolean if a field has been set.
|
||||
|
||||
### GetLockoutWindow
|
||||
|
||||
`func (o *LockoutConfiguration) GetLockoutWindow() int32`
|
||||
|
||||
GetLockoutWindow returns the LockoutWindow field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLockoutWindowOk
|
||||
|
||||
`func (o *LockoutConfiguration) GetLockoutWindowOk() (*int32, bool)`
|
||||
|
||||
GetLockoutWindowOk returns a tuple with the LockoutWindow field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLockoutWindow
|
||||
|
||||
`func (o *LockoutConfiguration) SetLockoutWindow(v int32)`
|
||||
|
||||
SetLockoutWindow sets LockoutWindow field to given value.
|
||||
|
||||
### HasLockoutWindow
|
||||
|
||||
`func (o *LockoutConfiguration) HasLockoutWindow() bool`
|
||||
|
||||
HasLockoutWindow returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,188 @@
|
||||
---
|
||||
id: v2024-machine-classification-config
|
||||
title: MachineClassificationConfig
|
||||
pagination_label: MachineClassificationConfig
|
||||
sidebar_label: MachineClassificationConfig
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'MachineClassificationConfig', 'V2024MachineClassificationConfig']
|
||||
slug: /tools/sdk/go/v2024/models/machine-classification-config
|
||||
tags: ['SDK', 'Software Development Kit', 'MachineClassificationConfig', 'V2024MachineClassificationConfig']
|
||||
---
|
||||
|
||||
# MachineClassificationConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Enabled** | Pointer to **bool** | Indicates if the Classification is enabled for a Source | [optional] [default to false]
|
||||
**ClassificationMethod** | Pointer to **string** | Classification Method | [optional]
|
||||
**Criteria** | Pointer to **NullableString** | A classification criteria object | [optional]
|
||||
**Created** | Pointer to **SailPointTime** | Time when the config was created | [optional]
|
||||
**Modified** | Pointer to **NullableTime** | Time when the config was last updated | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewMachineClassificationConfig
|
||||
|
||||
`func NewMachineClassificationConfig() *MachineClassificationConfig`
|
||||
|
||||
NewMachineClassificationConfig instantiates a new MachineClassificationConfig 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
|
||||
|
||||
### NewMachineClassificationConfigWithDefaults
|
||||
|
||||
`func NewMachineClassificationConfigWithDefaults() *MachineClassificationConfig`
|
||||
|
||||
NewMachineClassificationConfigWithDefaults instantiates a new MachineClassificationConfig 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
|
||||
|
||||
### GetEnabled
|
||||
|
||||
`func (o *MachineClassificationConfig) GetEnabled() bool`
|
||||
|
||||
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEnabledOk
|
||||
|
||||
`func (o *MachineClassificationConfig) GetEnabledOk() (*bool, bool)`
|
||||
|
||||
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEnabled
|
||||
|
||||
`func (o *MachineClassificationConfig) SetEnabled(v bool)`
|
||||
|
||||
SetEnabled sets Enabled field to given value.
|
||||
|
||||
### HasEnabled
|
||||
|
||||
`func (o *MachineClassificationConfig) HasEnabled() bool`
|
||||
|
||||
HasEnabled returns a boolean if a field has been set.
|
||||
|
||||
### GetClassificationMethod
|
||||
|
||||
`func (o *MachineClassificationConfig) GetClassificationMethod() string`
|
||||
|
||||
GetClassificationMethod returns the ClassificationMethod field if non-nil, zero value otherwise.
|
||||
|
||||
### GetClassificationMethodOk
|
||||
|
||||
`func (o *MachineClassificationConfig) GetClassificationMethodOk() (*string, bool)`
|
||||
|
||||
GetClassificationMethodOk returns a tuple with the ClassificationMethod field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetClassificationMethod
|
||||
|
||||
`func (o *MachineClassificationConfig) SetClassificationMethod(v string)`
|
||||
|
||||
SetClassificationMethod sets ClassificationMethod field to given value.
|
||||
|
||||
### HasClassificationMethod
|
||||
|
||||
`func (o *MachineClassificationConfig) HasClassificationMethod() bool`
|
||||
|
||||
HasClassificationMethod returns a boolean if a field has been set.
|
||||
|
||||
### GetCriteria
|
||||
|
||||
`func (o *MachineClassificationConfig) GetCriteria() string`
|
||||
|
||||
GetCriteria returns the Criteria field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCriteriaOk
|
||||
|
||||
`func (o *MachineClassificationConfig) GetCriteriaOk() (*string, bool)`
|
||||
|
||||
GetCriteriaOk returns a tuple with the Criteria field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCriteria
|
||||
|
||||
`func (o *MachineClassificationConfig) SetCriteria(v string)`
|
||||
|
||||
SetCriteria sets Criteria field to given value.
|
||||
|
||||
### HasCriteria
|
||||
|
||||
`func (o *MachineClassificationConfig) HasCriteria() bool`
|
||||
|
||||
HasCriteria returns a boolean if a field has been set.
|
||||
|
||||
### SetCriteriaNil
|
||||
|
||||
`func (o *MachineClassificationConfig) SetCriteriaNil(b bool)`
|
||||
|
||||
SetCriteriaNil sets the value for Criteria to be an explicit nil
|
||||
|
||||
### UnsetCriteria
|
||||
`func (o *MachineClassificationConfig) UnsetCriteria()`
|
||||
|
||||
UnsetCriteria ensures that no value is present for Criteria, not even an explicit nil
|
||||
### GetCreated
|
||||
|
||||
`func (o *MachineClassificationConfig) GetCreated() SailPointTime`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *MachineClassificationConfig) 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 *MachineClassificationConfig) SetCreated(v SailPointTime)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
### HasCreated
|
||||
|
||||
`func (o *MachineClassificationConfig) HasCreated() bool`
|
||||
|
||||
HasCreated returns a boolean if a field has been set.
|
||||
|
||||
### GetModified
|
||||
|
||||
`func (o *MachineClassificationConfig) GetModified() SailPointTime`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *MachineClassificationConfig) 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 *MachineClassificationConfig) SetModified(v SailPointTime)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
### HasModified
|
||||
|
||||
`func (o *MachineClassificationConfig) HasModified() bool`
|
||||
|
||||
HasModified returns a boolean if a field has been set.
|
||||
|
||||
### SetModifiedNil
|
||||
|
||||
`func (o *MachineClassificationConfig) SetModifiedNil(b bool)`
|
||||
|
||||
SetModifiedNil sets the value for Modified to be an explicit nil
|
||||
|
||||
### UnsetModified
|
||||
`func (o *MachineClassificationConfig) UnsetModified()`
|
||||
|
||||
UnsetModified ensures that no value is present for Modified, not even an explicit nil
|
||||
|
||||
@@ -1,64 +0,0 @@
|
||||
---
|
||||
id: v2024-patch-service-desk-integration-request
|
||||
title: PatchServiceDeskIntegrationRequest
|
||||
pagination_label: PatchServiceDeskIntegrationRequest
|
||||
sidebar_label: PatchServiceDeskIntegrationRequest
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'PatchServiceDeskIntegrationRequest', 'V2024PatchServiceDeskIntegrationRequest']
|
||||
slug: /tools/sdk/go/v2024/models/patch-service-desk-integration-request
|
||||
tags: ['SDK', 'Software Development Kit', 'PatchServiceDeskIntegrationRequest', 'V2024PatchServiceDeskIntegrationRequest']
|
||||
---
|
||||
|
||||
# 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.
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'ProvisioningPolicy', 'V2024Provisioni
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | **string** | the provisioning policy name |
|
||||
**Name** | **NullableString** | the provisioning policy name |
|
||||
**Description** | Pointer to **string** | the description of the provisioning policy | [optional]
|
||||
**UsageType** | Pointer to [**UsageType**](usage-type) | | [optional]
|
||||
**Fields** | Pointer to [**[]FieldDetailsDto**](field-details-dto) | | [optional]
|
||||
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
||||
|
||||
### NewProvisioningPolicy
|
||||
|
||||
`func NewProvisioningPolicy(name string, ) *ProvisioningPolicy`
|
||||
`func NewProvisioningPolicy(name NullableString, ) *ProvisioningPolicy`
|
||||
|
||||
NewProvisioningPolicy instantiates a new ProvisioningPolicy object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
@@ -59,6 +59,16 @@ and a boolean to check if the value has been set.
|
||||
SetName sets Name field to given value.
|
||||
|
||||
|
||||
### SetNameNil
|
||||
|
||||
`func (o *ProvisioningPolicy) SetNameNil(b bool)`
|
||||
|
||||
SetNameNil sets the value for Name to be an explicit nil
|
||||
|
||||
### UnsetName
|
||||
`func (o *ProvisioningPolicy) UnsetName()`
|
||||
|
||||
UnsetName ensures that no value is present for Name, not even an explicit nil
|
||||
### GetDescription
|
||||
|
||||
`func (o *ProvisioningPolicy) GetDescription() string`
|
||||
|
||||
@@ -15,7 +15,7 @@ tags: ['SDK', 'Software Development Kit', 'ProvisioningPolicyDto', 'V2024Provisi
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | **string** | the provisioning policy name |
|
||||
**Name** | **NullableString** | the provisioning policy name |
|
||||
**Description** | Pointer to **string** | the description of the provisioning policy | [optional]
|
||||
**UsageType** | Pointer to [**UsageType**](usage-type) | | [optional]
|
||||
**Fields** | Pointer to [**[]FieldDetailsDto**](field-details-dto) | | [optional]
|
||||
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
||||
|
||||
### NewProvisioningPolicyDto
|
||||
|
||||
`func NewProvisioningPolicyDto(name string, ) *ProvisioningPolicyDto`
|
||||
`func NewProvisioningPolicyDto(name NullableString, ) *ProvisioningPolicyDto`
|
||||
|
||||
NewProvisioningPolicyDto instantiates a new ProvisioningPolicyDto object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
@@ -59,6 +59,16 @@ and a boolean to check if the value has been set.
|
||||
SetName sets Name field to given value.
|
||||
|
||||
|
||||
### SetNameNil
|
||||
|
||||
`func (o *ProvisioningPolicyDto) SetNameNil(b bool)`
|
||||
|
||||
SetNameNil sets the value for Name to be an explicit nil
|
||||
|
||||
### UnsetName
|
||||
`func (o *ProvisioningPolicyDto) UnsetName()`
|
||||
|
||||
UnsetName ensures that no value is present for Name, not even an explicit nil
|
||||
### GetDescription
|
||||
|
||||
`func (o *ProvisioningPolicyDto) GetDescription() string`
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
---
|
||||
id: v2024-requested-for-dto-ref
|
||||
title: RequestedForDtoRef
|
||||
pagination_label: RequestedForDtoRef
|
||||
sidebar_label: RequestedForDtoRef
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'RequestedForDtoRef', 'V2024RequestedForDtoRef']
|
||||
slug: /tools/sdk/go/v2024/models/requested-for-dto-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestedForDtoRef', 'V2024RequestedForDtoRef']
|
||||
---
|
||||
|
||||
# RequestedForDtoRef
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**IdentityId** | **string** | The identity id for which the access is requested |
|
||||
**RequestedItems** | [**[]RequestedItemDtoRef**](requested-item-dto-ref) | the details for the access items that are requested for the identity |
|
||||
|
||||
## Methods
|
||||
|
||||
### NewRequestedForDtoRef
|
||||
|
||||
`func NewRequestedForDtoRef(identityId string, requestedItems []RequestedItemDtoRef, ) *RequestedForDtoRef`
|
||||
|
||||
NewRequestedForDtoRef instantiates a new RequestedForDtoRef 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
|
||||
|
||||
### NewRequestedForDtoRefWithDefaults
|
||||
|
||||
`func NewRequestedForDtoRefWithDefaults() *RequestedForDtoRef`
|
||||
|
||||
NewRequestedForDtoRefWithDefaults instantiates a new RequestedForDtoRef 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
|
||||
|
||||
### GetIdentityId
|
||||
|
||||
`func (o *RequestedForDtoRef) GetIdentityId() string`
|
||||
|
||||
GetIdentityId returns the IdentityId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdentityIdOk
|
||||
|
||||
`func (o *RequestedForDtoRef) GetIdentityIdOk() (*string, bool)`
|
||||
|
||||
GetIdentityIdOk returns a tuple with the IdentityId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIdentityId
|
||||
|
||||
`func (o *RequestedForDtoRef) SetIdentityId(v string)`
|
||||
|
||||
SetIdentityId sets IdentityId field to given value.
|
||||
|
||||
|
||||
### GetRequestedItems
|
||||
|
||||
`func (o *RequestedForDtoRef) GetRequestedItems() []RequestedItemDtoRef`
|
||||
|
||||
GetRequestedItems returns the RequestedItems field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequestedItemsOk
|
||||
|
||||
`func (o *RequestedForDtoRef) GetRequestedItemsOk() (*[]RequestedItemDtoRef, bool)`
|
||||
|
||||
GetRequestedItemsOk returns a tuple with the RequestedItems field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequestedItems
|
||||
|
||||
`func (o *RequestedForDtoRef) SetRequestedItems(v []RequestedItemDtoRef)`
|
||||
|
||||
SetRequestedItems sets RequestedItems field to given value.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,230 @@
|
||||
---
|
||||
id: v2024-requested-item-account-selections
|
||||
title: RequestedItemAccountSelections
|
||||
pagination_label: RequestedItemAccountSelections
|
||||
sidebar_label: RequestedItemAccountSelections
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'RequestedItemAccountSelections', 'V2024RequestedItemAccountSelections']
|
||||
slug: /tools/sdk/go/v2024/models/requested-item-account-selections
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestedItemAccountSelections', 'V2024RequestedItemAccountSelections']
|
||||
---
|
||||
|
||||
# RequestedItemAccountSelections
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Description** | Pointer to **string** | The description for this requested item | [optional]
|
||||
**AccountsSelectionBlocked** | Pointer to **bool** | This field indicates if account selections are not allowed for this requested item. * If true, this field indicates that account selections will not be available for this item and user combination. In this case, no account selections should be provided in the access request for this item and user combination, irrespective of whether the user has single or multiple accounts on a source. * An example is where a user is requesting an access profile that is already assigned to one of their accounts. | [optional] [default to false]
|
||||
**AccountsSelectionBlockedReason** | Pointer to **NullableString** | If account selections are not allowed for an item, this field will denote the reason. | [optional]
|
||||
**Type** | Pointer to **string** | The type of the item being requested. | [optional]
|
||||
**Id** | Pointer to **string** | The id of the requested item | [optional]
|
||||
**Name** | Pointer to **string** | The name of the requested item | [optional]
|
||||
**Sources** | Pointer to [**[]SourceAccountSelections**](source-account-selections) | The details for the sources and accounts for the requested item and identity combination | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewRequestedItemAccountSelections
|
||||
|
||||
`func NewRequestedItemAccountSelections() *RequestedItemAccountSelections`
|
||||
|
||||
NewRequestedItemAccountSelections instantiates a new RequestedItemAccountSelections 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
|
||||
|
||||
### NewRequestedItemAccountSelectionsWithDefaults
|
||||
|
||||
`func NewRequestedItemAccountSelectionsWithDefaults() *RequestedItemAccountSelections`
|
||||
|
||||
NewRequestedItemAccountSelectionsWithDefaults instantiates a new RequestedItemAccountSelections 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
|
||||
|
||||
### GetDescription
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetDescription() string`
|
||||
|
||||
GetDescription returns the Description field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDescriptionOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) 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 *RequestedItemAccountSelections) SetDescription(v string)`
|
||||
|
||||
SetDescription sets Description field to given value.
|
||||
|
||||
### HasDescription
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasDescription() bool`
|
||||
|
||||
HasDescription returns a boolean if a field has been set.
|
||||
|
||||
### GetAccountsSelectionBlocked
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetAccountsSelectionBlocked() bool`
|
||||
|
||||
GetAccountsSelectionBlocked returns the AccountsSelectionBlocked field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountsSelectionBlockedOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetAccountsSelectionBlockedOk() (*bool, bool)`
|
||||
|
||||
GetAccountsSelectionBlockedOk returns a tuple with the AccountsSelectionBlocked field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccountsSelectionBlocked
|
||||
|
||||
`func (o *RequestedItemAccountSelections) SetAccountsSelectionBlocked(v bool)`
|
||||
|
||||
SetAccountsSelectionBlocked sets AccountsSelectionBlocked field to given value.
|
||||
|
||||
### HasAccountsSelectionBlocked
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasAccountsSelectionBlocked() bool`
|
||||
|
||||
HasAccountsSelectionBlocked returns a boolean if a field has been set.
|
||||
|
||||
### GetAccountsSelectionBlockedReason
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetAccountsSelectionBlockedReason() string`
|
||||
|
||||
GetAccountsSelectionBlockedReason returns the AccountsSelectionBlockedReason field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountsSelectionBlockedReasonOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetAccountsSelectionBlockedReasonOk() (*string, bool)`
|
||||
|
||||
GetAccountsSelectionBlockedReasonOk returns a tuple with the AccountsSelectionBlockedReason field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccountsSelectionBlockedReason
|
||||
|
||||
`func (o *RequestedItemAccountSelections) SetAccountsSelectionBlockedReason(v string)`
|
||||
|
||||
SetAccountsSelectionBlockedReason sets AccountsSelectionBlockedReason field to given value.
|
||||
|
||||
### HasAccountsSelectionBlockedReason
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasAccountsSelectionBlockedReason() bool`
|
||||
|
||||
HasAccountsSelectionBlockedReason returns a boolean if a field has been set.
|
||||
|
||||
### SetAccountsSelectionBlockedReasonNil
|
||||
|
||||
`func (o *RequestedItemAccountSelections) SetAccountsSelectionBlockedReasonNil(b bool)`
|
||||
|
||||
SetAccountsSelectionBlockedReasonNil sets the value for AccountsSelectionBlockedReason to be an explicit nil
|
||||
|
||||
### UnsetAccountsSelectionBlockedReason
|
||||
`func (o *RequestedItemAccountSelections) UnsetAccountsSelectionBlockedReason()`
|
||||
|
||||
UnsetAccountsSelectionBlockedReason ensures that no value is present for AccountsSelectionBlockedReason, not even an explicit nil
|
||||
### GetType
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *RequestedItemAccountSelections) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) 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 *RequestedItemAccountSelections) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetName
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) 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 *RequestedItemAccountSelections) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
### GetSources
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetSources() []SourceAccountSelections`
|
||||
|
||||
GetSources returns the Sources field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourcesOk
|
||||
|
||||
`func (o *RequestedItemAccountSelections) GetSourcesOk() (*[]SourceAccountSelections, bool)`
|
||||
|
||||
GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSources
|
||||
|
||||
`func (o *RequestedItemAccountSelections) SetSources(v []SourceAccountSelections)`
|
||||
|
||||
SetSources sets Sources field to given value.
|
||||
|
||||
### HasSources
|
||||
|
||||
`func (o *RequestedItemAccountSelections) HasSources() bool`
|
||||
|
||||
HasSources returns a boolean if a field has been set.
|
||||
|
||||
|
||||
266
docs/tools/sdk/go/Reference/V2024/Models/RequestedItemDtoRef.md
Normal file
266
docs/tools/sdk/go/Reference/V2024/Models/RequestedItemDtoRef.md
Normal file
@@ -0,0 +1,266 @@
|
||||
---
|
||||
id: v2024-requested-item-dto-ref
|
||||
title: RequestedItemDtoRef
|
||||
pagination_label: RequestedItemDtoRef
|
||||
sidebar_label: RequestedItemDtoRef
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'RequestedItemDtoRef', 'V2024RequestedItemDtoRef']
|
||||
slug: /tools/sdk/go/v2024/models/requested-item-dto-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestedItemDtoRef', 'V2024RequestedItemDtoRef']
|
||||
---
|
||||
|
||||
# RequestedItemDtoRef
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | **string** | The type of the item being requested. |
|
||||
**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 **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]
|
||||
**AccountSelection** | Pointer to [**[]SourceItemRef**](source-item-ref) | The accounts where the access item will be provisioned to * Includes selections performed by the user in the event of multiple accounts existing on the same source * Also includes details for sources where user only has one account | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewRequestedItemDtoRef
|
||||
|
||||
`func NewRequestedItemDtoRef(type_ string, id string, ) *RequestedItemDtoRef`
|
||||
|
||||
NewRequestedItemDtoRef instantiates a new RequestedItemDtoRef 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
|
||||
|
||||
### NewRequestedItemDtoRefWithDefaults
|
||||
|
||||
`func NewRequestedItemDtoRefWithDefaults() *RequestedItemDtoRef`
|
||||
|
||||
NewRequestedItemDtoRefWithDefaults instantiates a new RequestedItemDtoRef 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
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) 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 *RequestedItemDtoRef) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
|
||||
### GetComment
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetComment() string`
|
||||
|
||||
GetComment returns the Comment field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCommentOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetCommentOk() (*string, bool)`
|
||||
|
||||
GetCommentOk returns a tuple with the Comment field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetComment
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetComment(v string)`
|
||||
|
||||
SetComment sets Comment field to given value.
|
||||
|
||||
### HasComment
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasComment() bool`
|
||||
|
||||
HasComment returns a boolean if a field has been set.
|
||||
|
||||
### GetClientMetadata
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetClientMetadata() map[string]string`
|
||||
|
||||
GetClientMetadata returns the ClientMetadata field if non-nil, zero value otherwise.
|
||||
|
||||
### GetClientMetadataOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetClientMetadataOk() (*map[string]string, bool)`
|
||||
|
||||
GetClientMetadataOk returns a tuple with the ClientMetadata field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetClientMetadata
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetClientMetadata(v map[string]string)`
|
||||
|
||||
SetClientMetadata sets ClientMetadata field to given value.
|
||||
|
||||
### HasClientMetadata
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasClientMetadata() bool`
|
||||
|
||||
HasClientMetadata returns a boolean if a field has been set.
|
||||
|
||||
### GetRemoveDate
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetRemoveDate() SailPointTime`
|
||||
|
||||
GetRemoveDate returns the RemoveDate field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRemoveDateOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) 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 *RequestedItemDtoRef) SetRemoveDate(v SailPointTime)`
|
||||
|
||||
SetRemoveDate sets RemoveDate field to given value.
|
||||
|
||||
### HasRemoveDate
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasRemoveDate() bool`
|
||||
|
||||
HasRemoveDate returns a boolean if a field has been set.
|
||||
|
||||
### GetAssignmentId
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAssignmentId() string`
|
||||
|
||||
GetAssignmentId returns the AssignmentId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAssignmentIdOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) 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 *RequestedItemDtoRef) SetAssignmentId(v string)`
|
||||
|
||||
SetAssignmentId sets AssignmentId field to given value.
|
||||
|
||||
### HasAssignmentId
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasAssignmentId() bool`
|
||||
|
||||
HasAssignmentId returns a boolean if a field has been set.
|
||||
|
||||
### SetAssignmentIdNil
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetAssignmentIdNil(b bool)`
|
||||
|
||||
SetAssignmentIdNil sets the value for AssignmentId to be an explicit nil
|
||||
|
||||
### UnsetAssignmentId
|
||||
`func (o *RequestedItemDtoRef) UnsetAssignmentId()`
|
||||
|
||||
UnsetAssignmentId ensures that no value is present for AssignmentId, not even an explicit nil
|
||||
### GetNativeIdentity
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetNativeIdentity() string`
|
||||
|
||||
GetNativeIdentity returns the NativeIdentity field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNativeIdentityOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) 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 *RequestedItemDtoRef) SetNativeIdentity(v string)`
|
||||
|
||||
SetNativeIdentity sets NativeIdentity field to given value.
|
||||
|
||||
### HasNativeIdentity
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasNativeIdentity() bool`
|
||||
|
||||
HasNativeIdentity returns a boolean if a field has been set.
|
||||
|
||||
### SetNativeIdentityNil
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetNativeIdentityNil(b bool)`
|
||||
|
||||
SetNativeIdentityNil sets the value for NativeIdentity to be an explicit nil
|
||||
|
||||
### UnsetNativeIdentity
|
||||
`func (o *RequestedItemDtoRef) UnsetNativeIdentity()`
|
||||
|
||||
UnsetNativeIdentity ensures that no value is present for NativeIdentity, not even an explicit nil
|
||||
### GetAccountSelection
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAccountSelection() []SourceItemRef`
|
||||
|
||||
GetAccountSelection returns the AccountSelection field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountSelectionOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAccountSelectionOk() (*[]SourceItemRef, bool)`
|
||||
|
||||
GetAccountSelectionOk returns a tuple with the AccountSelection field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccountSelection
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetAccountSelection(v []SourceItemRef)`
|
||||
|
||||
SetAccountSelection sets AccountSelection field to given value.
|
||||
|
||||
### HasAccountSelection
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasAccountSelection() bool`
|
||||
|
||||
HasAccountSelection returns a boolean if a field has been set.
|
||||
|
||||
### SetAccountSelectionNil
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetAccountSelectionNil(b bool)`
|
||||
|
||||
SetAccountSelectionNil sets the value for AccountSelection to be an explicit nil
|
||||
|
||||
### UnsetAccountSelection
|
||||
`func (o *RequestedItemDtoRef) UnsetAccountSelection()`
|
||||
|
||||
UnsetAccountSelection ensures that no value is present for AccountSelection, not even an explicit nil
|
||||
|
||||
@@ -1,249 +0,0 @@
|
||||
---
|
||||
id: v2024-scheduled-attributes
|
||||
title: ScheduledAttributes
|
||||
pagination_label: ScheduledAttributes
|
||||
sidebar_label: ScheduledAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ScheduledAttributes', 'V2024ScheduledAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/scheduled-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'ScheduledAttributes', 'V2024ScheduledAttributes']
|
||||
---
|
||||
|
||||
# ScheduledAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Frequency** | **NullableString** | Frequency of execution |
|
||||
**TimeZone** | Pointer to **NullableString** | Time zone identifier | [optional]
|
||||
**CronString** | Pointer to **NullableString** | A valid CRON expression | [optional]
|
||||
**WeeklyDays** | Pointer to **[]string** | Scheduled days of the week for execution | [optional]
|
||||
**WeeklyTimes** | Pointer to **[]string** | Scheduled execution times | [optional]
|
||||
**YearlyTimes** | Pointer to **[]string** | Scheduled execution times | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewScheduledAttributes
|
||||
|
||||
`func NewScheduledAttributes(frequency NullableString, ) *ScheduledAttributes`
|
||||
|
||||
NewScheduledAttributes instantiates a new ScheduledAttributes 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
|
||||
|
||||
### NewScheduledAttributesWithDefaults
|
||||
|
||||
`func NewScheduledAttributesWithDefaults() *ScheduledAttributes`
|
||||
|
||||
NewScheduledAttributesWithDefaults instantiates a new ScheduledAttributes 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
|
||||
|
||||
### GetFrequency
|
||||
|
||||
`func (o *ScheduledAttributes) GetFrequency() string`
|
||||
|
||||
GetFrequency returns the Frequency field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFrequencyOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetFrequencyOk() (*string, bool)`
|
||||
|
||||
GetFrequencyOk returns a tuple with the Frequency field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetFrequency
|
||||
|
||||
`func (o *ScheduledAttributes) SetFrequency(v string)`
|
||||
|
||||
SetFrequency sets Frequency field to given value.
|
||||
|
||||
|
||||
### SetFrequencyNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetFrequencyNil(b bool)`
|
||||
|
||||
SetFrequencyNil sets the value for Frequency to be an explicit nil
|
||||
|
||||
### UnsetFrequency
|
||||
`func (o *ScheduledAttributes) UnsetFrequency()`
|
||||
|
||||
UnsetFrequency ensures that no value is present for Frequency, not even an explicit nil
|
||||
### GetTimeZone
|
||||
|
||||
`func (o *ScheduledAttributes) GetTimeZone() string`
|
||||
|
||||
GetTimeZone returns the TimeZone field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTimeZoneOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetTimeZoneOk() (*string, bool)`
|
||||
|
||||
GetTimeZoneOk returns a tuple with the TimeZone field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTimeZone
|
||||
|
||||
`func (o *ScheduledAttributes) SetTimeZone(v string)`
|
||||
|
||||
SetTimeZone sets TimeZone field to given value.
|
||||
|
||||
### HasTimeZone
|
||||
|
||||
`func (o *ScheduledAttributes) HasTimeZone() bool`
|
||||
|
||||
HasTimeZone returns a boolean if a field has been set.
|
||||
|
||||
### SetTimeZoneNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetTimeZoneNil(b bool)`
|
||||
|
||||
SetTimeZoneNil sets the value for TimeZone to be an explicit nil
|
||||
|
||||
### UnsetTimeZone
|
||||
`func (o *ScheduledAttributes) UnsetTimeZone()`
|
||||
|
||||
UnsetTimeZone ensures that no value is present for TimeZone, not even an explicit nil
|
||||
### GetCronString
|
||||
|
||||
`func (o *ScheduledAttributes) GetCronString() string`
|
||||
|
||||
GetCronString returns the CronString field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCronStringOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetCronStringOk() (*string, bool)`
|
||||
|
||||
GetCronStringOk returns a tuple with the CronString field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCronString
|
||||
|
||||
`func (o *ScheduledAttributes) SetCronString(v string)`
|
||||
|
||||
SetCronString sets CronString field to given value.
|
||||
|
||||
### HasCronString
|
||||
|
||||
`func (o *ScheduledAttributes) HasCronString() bool`
|
||||
|
||||
HasCronString returns a boolean if a field has been set.
|
||||
|
||||
### SetCronStringNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetCronStringNil(b bool)`
|
||||
|
||||
SetCronStringNil sets the value for CronString to be an explicit nil
|
||||
|
||||
### UnsetCronString
|
||||
`func (o *ScheduledAttributes) UnsetCronString()`
|
||||
|
||||
UnsetCronString ensures that no value is present for CronString, not even an explicit nil
|
||||
### GetWeeklyDays
|
||||
|
||||
`func (o *ScheduledAttributes) GetWeeklyDays() []string`
|
||||
|
||||
GetWeeklyDays returns the WeeklyDays field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWeeklyDaysOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetWeeklyDaysOk() (*[]string, bool)`
|
||||
|
||||
GetWeeklyDaysOk returns a tuple with the WeeklyDays field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWeeklyDays
|
||||
|
||||
`func (o *ScheduledAttributes) SetWeeklyDays(v []string)`
|
||||
|
||||
SetWeeklyDays sets WeeklyDays field to given value.
|
||||
|
||||
### HasWeeklyDays
|
||||
|
||||
`func (o *ScheduledAttributes) HasWeeklyDays() bool`
|
||||
|
||||
HasWeeklyDays returns a boolean if a field has been set.
|
||||
|
||||
### SetWeeklyDaysNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetWeeklyDaysNil(b bool)`
|
||||
|
||||
SetWeeklyDaysNil sets the value for WeeklyDays to be an explicit nil
|
||||
|
||||
### UnsetWeeklyDays
|
||||
`func (o *ScheduledAttributes) UnsetWeeklyDays()`
|
||||
|
||||
UnsetWeeklyDays ensures that no value is present for WeeklyDays, not even an explicit nil
|
||||
### GetWeeklyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) GetWeeklyTimes() []string`
|
||||
|
||||
GetWeeklyTimes returns the WeeklyTimes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWeeklyTimesOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetWeeklyTimesOk() (*[]string, bool)`
|
||||
|
||||
GetWeeklyTimesOk returns a tuple with the WeeklyTimes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWeeklyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) SetWeeklyTimes(v []string)`
|
||||
|
||||
SetWeeklyTimes sets WeeklyTimes field to given value.
|
||||
|
||||
### HasWeeklyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) HasWeeklyTimes() bool`
|
||||
|
||||
HasWeeklyTimes returns a boolean if a field has been set.
|
||||
|
||||
### SetWeeklyTimesNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetWeeklyTimesNil(b bool)`
|
||||
|
||||
SetWeeklyTimesNil sets the value for WeeklyTimes to be an explicit nil
|
||||
|
||||
### UnsetWeeklyTimes
|
||||
`func (o *ScheduledAttributes) UnsetWeeklyTimes()`
|
||||
|
||||
UnsetWeeklyTimes ensures that no value is present for WeeklyTimes, not even an explicit nil
|
||||
### GetYearlyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) GetYearlyTimes() []string`
|
||||
|
||||
GetYearlyTimes returns the YearlyTimes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetYearlyTimesOk
|
||||
|
||||
`func (o *ScheduledAttributes) GetYearlyTimesOk() (*[]string, bool)`
|
||||
|
||||
GetYearlyTimesOk returns a tuple with the YearlyTimes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetYearlyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) SetYearlyTimes(v []string)`
|
||||
|
||||
SetYearlyTimes sets YearlyTimes field to given value.
|
||||
|
||||
### HasYearlyTimes
|
||||
|
||||
`func (o *ScheduledAttributes) HasYearlyTimes() bool`
|
||||
|
||||
HasYearlyTimes returns a boolean if a field has been set.
|
||||
|
||||
### SetYearlyTimesNil
|
||||
|
||||
`func (o *ScheduledAttributes) SetYearlyTimesNil(b bool)`
|
||||
|
||||
SetYearlyTimesNil sets the value for YearlyTimes to be an explicit nil
|
||||
|
||||
### UnsetYearlyTimes
|
||||
`func (o *ScheduledAttributes) UnsetYearlyTimes()`
|
||||
|
||||
UnsetYearlyTimes ensures that no value is present for YearlyTimes, not even an explicit nil
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
---
|
||||
id: v2024-send-classify-machine-account200-response
|
||||
title: SendClassifyMachineAccount200Response
|
||||
pagination_label: SendClassifyMachineAccount200Response
|
||||
sidebar_label: SendClassifyMachineAccount200Response
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'SendClassifyMachineAccount200Response', 'V2024SendClassifyMachineAccount200Response']
|
||||
slug: /tools/sdk/go/v2024/models/send-classify-machine-account200-response
|
||||
tags: ['SDK', 'Software Development Kit', 'SendClassifyMachineAccount200Response', 'V2024SendClassifyMachineAccount200Response']
|
||||
---
|
||||
|
||||
# SendClassifyMachineAccount200Response
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**IsMachine** | Pointer to **bool** | Indicates if account is classified as machine | [optional] [default to false]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSendClassifyMachineAccount200Response
|
||||
|
||||
`func NewSendClassifyMachineAccount200Response() *SendClassifyMachineAccount200Response`
|
||||
|
||||
NewSendClassifyMachineAccount200Response instantiates a new SendClassifyMachineAccount200Response 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
|
||||
|
||||
### NewSendClassifyMachineAccount200ResponseWithDefaults
|
||||
|
||||
`func NewSendClassifyMachineAccount200ResponseWithDefaults() *SendClassifyMachineAccount200Response`
|
||||
|
||||
NewSendClassifyMachineAccount200ResponseWithDefaults instantiates a new SendClassifyMachineAccount200Response 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
|
||||
|
||||
### GetIsMachine
|
||||
|
||||
`func (o *SendClassifyMachineAccount200Response) GetIsMachine() bool`
|
||||
|
||||
GetIsMachine returns the IsMachine field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIsMachineOk
|
||||
|
||||
`func (o *SendClassifyMachineAccount200Response) GetIsMachineOk() (*bool, bool)`
|
||||
|
||||
GetIsMachineOk returns a tuple with the IsMachine field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIsMachine
|
||||
|
||||
`func (o *SendClassifyMachineAccount200Response) SetIsMachine(v bool)`
|
||||
|
||||
SetIsMachine sets IsMachine field to given value.
|
||||
|
||||
### HasIsMachine
|
||||
|
||||
`func (o *SendClassifyMachineAccount200Response) HasIsMachine() bool`
|
||||
|
||||
HasIsMachine returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
---
|
||||
id: v2024-service-provider-configuration
|
||||
title: ServiceProviderConfiguration
|
||||
pagination_label: ServiceProviderConfiguration
|
||||
sidebar_label: ServiceProviderConfiguration
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ServiceProviderConfiguration', 'V2024ServiceProviderConfiguration']
|
||||
slug: /tools/sdk/go/v2024/models/service-provider-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'ServiceProviderConfiguration', 'V2024ServiceProviderConfiguration']
|
||||
---
|
||||
|
||||
# ServiceProviderConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Enabled** | Pointer to **bool** | This determines whether or not the SAML authentication flow is enabled for an org | [optional] [default to false]
|
||||
**BypassIdp** | Pointer to **bool** | This allows basic login with the parameter prompt=true. This is often toggled on when debugging SAML authentication setup. When false, only org admins with MFA-enabled can bypass the IDP. | [optional] [default to false]
|
||||
**SamlConfigurationValid** | Pointer to **bool** | This indicates whether or not the SAML configuration is valid. | [optional] [default to false]
|
||||
**FederationProtocolDetails** | Pointer to [**[]ServiceProviderConfigurationFederationProtocolDetailsInner**](service-provider-configuration-federation-protocol-details-inner) | A list of the abstract implementations of the Federation Protocol details. Typically, this will include on SpDetails object and one IdpDetails object used in tandem to define a SAML integration between a customer's identity provider and a customer's SailPoint instance (i.e., the service provider). | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewServiceProviderConfiguration
|
||||
|
||||
`func NewServiceProviderConfiguration() *ServiceProviderConfiguration`
|
||||
|
||||
NewServiceProviderConfiguration instantiates a new ServiceProviderConfiguration 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
|
||||
|
||||
### NewServiceProviderConfigurationWithDefaults
|
||||
|
||||
`func NewServiceProviderConfigurationWithDefaults() *ServiceProviderConfiguration`
|
||||
|
||||
NewServiceProviderConfigurationWithDefaults instantiates a new ServiceProviderConfiguration 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
|
||||
|
||||
### GetEnabled
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetEnabled() bool`
|
||||
|
||||
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEnabledOk
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetEnabledOk() (*bool, bool)`
|
||||
|
||||
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEnabled
|
||||
|
||||
`func (o *ServiceProviderConfiguration) SetEnabled(v bool)`
|
||||
|
||||
SetEnabled sets Enabled field to given value.
|
||||
|
||||
### HasEnabled
|
||||
|
||||
`func (o *ServiceProviderConfiguration) HasEnabled() bool`
|
||||
|
||||
HasEnabled returns a boolean if a field has been set.
|
||||
|
||||
### GetBypassIdp
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetBypassIdp() bool`
|
||||
|
||||
GetBypassIdp returns the BypassIdp field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBypassIdpOk
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetBypassIdpOk() (*bool, bool)`
|
||||
|
||||
GetBypassIdpOk returns a tuple with the BypassIdp field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBypassIdp
|
||||
|
||||
`func (o *ServiceProviderConfiguration) SetBypassIdp(v bool)`
|
||||
|
||||
SetBypassIdp sets BypassIdp field to given value.
|
||||
|
||||
### HasBypassIdp
|
||||
|
||||
`func (o *ServiceProviderConfiguration) HasBypassIdp() bool`
|
||||
|
||||
HasBypassIdp returns a boolean if a field has been set.
|
||||
|
||||
### GetSamlConfigurationValid
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetSamlConfigurationValid() bool`
|
||||
|
||||
GetSamlConfigurationValid returns the SamlConfigurationValid field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSamlConfigurationValidOk
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetSamlConfigurationValidOk() (*bool, bool)`
|
||||
|
||||
GetSamlConfigurationValidOk returns a tuple with the SamlConfigurationValid field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSamlConfigurationValid
|
||||
|
||||
`func (o *ServiceProviderConfiguration) SetSamlConfigurationValid(v bool)`
|
||||
|
||||
SetSamlConfigurationValid sets SamlConfigurationValid field to given value.
|
||||
|
||||
### HasSamlConfigurationValid
|
||||
|
||||
`func (o *ServiceProviderConfiguration) HasSamlConfigurationValid() bool`
|
||||
|
||||
HasSamlConfigurationValid returns a boolean if a field has been set.
|
||||
|
||||
### GetFederationProtocolDetails
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetFederationProtocolDetails() []ServiceProviderConfigurationFederationProtocolDetailsInner`
|
||||
|
||||
GetFederationProtocolDetails returns the FederationProtocolDetails field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFederationProtocolDetailsOk
|
||||
|
||||
`func (o *ServiceProviderConfiguration) GetFederationProtocolDetailsOk() (*[]ServiceProviderConfigurationFederationProtocolDetailsInner, bool)`
|
||||
|
||||
GetFederationProtocolDetailsOk returns a tuple with the FederationProtocolDetails field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetFederationProtocolDetails
|
||||
|
||||
`func (o *ServiceProviderConfiguration) SetFederationProtocolDetails(v []ServiceProviderConfigurationFederationProtocolDetailsInner)`
|
||||
|
||||
SetFederationProtocolDetails sets FederationProtocolDetails field to given value.
|
||||
|
||||
### HasFederationProtocolDetails
|
||||
|
||||
`func (o *ServiceProviderConfiguration) HasFederationProtocolDetails() bool`
|
||||
|
||||
HasFederationProtocolDetails returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,470 @@
|
||||
---
|
||||
id: v2024-service-provider-configuration-federation-protocol-details-inner
|
||||
title: ServiceProviderConfigurationFederationProtocolDetailsInner
|
||||
pagination_label: ServiceProviderConfigurationFederationProtocolDetailsInner
|
||||
sidebar_label: ServiceProviderConfigurationFederationProtocolDetailsInner
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ServiceProviderConfigurationFederationProtocolDetailsInner', 'V2024ServiceProviderConfigurationFederationProtocolDetailsInner']
|
||||
slug: /tools/sdk/go/v2024/models/service-provider-configuration-federation-protocol-details-inner
|
||||
tags: ['SDK', 'Software Development Kit', 'ServiceProviderConfigurationFederationProtocolDetailsInner', 'V2024ServiceProviderConfigurationFederationProtocolDetailsInner']
|
||||
---
|
||||
|
||||
# ServiceProviderConfigurationFederationProtocolDetailsInner
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Role** | Pointer to **string** | Federation protocol role | [optional]
|
||||
**EntityId** | Pointer to **string** | An entity ID is a globally unique name for a SAML entity, either an Identity Provider (IDP) or a Service Provider (SP). | [optional]
|
||||
**Binding** | Pointer to **string** | Defines the binding used for the SAML flow. Used with IDP configurations. | [optional]
|
||||
**AuthnContext** | Pointer to **string** | Specifies the SAML authentication method to use. Used with IDP configurations. | [optional]
|
||||
**LogoutUrl** | Pointer to **string** | The IDP logout URL. Used with IDP configurations. | [optional]
|
||||
**IncludeAuthnContext** | Pointer to **bool** | Determines if the configured AuthnContext should be used or the default. Used with IDP configurations. | [optional] [default to false]
|
||||
**NameId** | Pointer to **string** | The name id format to use. Used with IDP configurations. | [optional]
|
||||
**JitConfiguration** | Pointer to [**JITConfiguration**](jit-configuration) | | [optional]
|
||||
**Cert** | Pointer to **string** | The Base64-encoded certificate used by the IDP. Used with IDP configurations. | [optional]
|
||||
**LoginUrlPost** | Pointer to **string** | The IDP POST URL, used with IDP HTTP-POST bindings for IDP-initiated logins. Used with IDP configurations. | [optional]
|
||||
**LoginUrlRedirect** | Pointer to **string** | The IDP Redirect URL. Used with IDP configurations. | [optional]
|
||||
**MappingAttribute** | **string** | Return the saml Id for the given user, based on the IDN as SP settings of the org. Used with IDP configurations. |
|
||||
**CertificateExpirationDate** | Pointer to **string** | The expiration date extracted from the certificate. | [optional]
|
||||
**CertificateName** | Pointer to **string** | The name extracted from the certificate. | [optional]
|
||||
**Alias** | Pointer to **string** | Unique alias used to identify the selected local service provider based on used URL. Used with SP configurations. | [optional]
|
||||
**CallbackUrl** | **string** | The allowed callback URL where users will be redirected to after authentication. Used with SP configurations. |
|
||||
**LegacyAcsUrl** | Pointer to **string** | The legacy ACS URL used for SAML authentication. Used with SP configurations. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewServiceProviderConfigurationFederationProtocolDetailsInner
|
||||
|
||||
`func NewServiceProviderConfigurationFederationProtocolDetailsInner(mappingAttribute string, callbackUrl string, ) *ServiceProviderConfigurationFederationProtocolDetailsInner`
|
||||
|
||||
NewServiceProviderConfigurationFederationProtocolDetailsInner instantiates a new ServiceProviderConfigurationFederationProtocolDetailsInner 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
|
||||
|
||||
### NewServiceProviderConfigurationFederationProtocolDetailsInnerWithDefaults
|
||||
|
||||
`func NewServiceProviderConfigurationFederationProtocolDetailsInnerWithDefaults() *ServiceProviderConfigurationFederationProtocolDetailsInner`
|
||||
|
||||
NewServiceProviderConfigurationFederationProtocolDetailsInnerWithDefaults instantiates a new ServiceProviderConfigurationFederationProtocolDetailsInner 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
|
||||
|
||||
### GetRole
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetRole() string`
|
||||
|
||||
GetRole returns the Role field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetRoleOk() (*string, bool)`
|
||||
|
||||
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRole
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetRole(v string)`
|
||||
|
||||
SetRole sets Role field to given value.
|
||||
|
||||
### HasRole
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasRole() bool`
|
||||
|
||||
HasRole returns a boolean if a field has been set.
|
||||
|
||||
### GetEntityId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetEntityId() string`
|
||||
|
||||
GetEntityId returns the EntityId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEntityIdOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetEntityIdOk() (*string, bool)`
|
||||
|
||||
GetEntityIdOk returns a tuple with the EntityId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEntityId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetEntityId(v string)`
|
||||
|
||||
SetEntityId sets EntityId field to given value.
|
||||
|
||||
### HasEntityId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasEntityId() bool`
|
||||
|
||||
HasEntityId returns a boolean if a field has been set.
|
||||
|
||||
### GetBinding
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetBinding() string`
|
||||
|
||||
GetBinding returns the Binding field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBindingOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetBindingOk() (*string, bool)`
|
||||
|
||||
GetBindingOk returns a tuple with the Binding field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBinding
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetBinding(v string)`
|
||||
|
||||
SetBinding sets Binding field to given value.
|
||||
|
||||
### HasBinding
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasBinding() bool`
|
||||
|
||||
HasBinding returns a boolean if a field has been set.
|
||||
|
||||
### GetAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetAuthnContext() string`
|
||||
|
||||
GetAuthnContext returns the AuthnContext field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAuthnContextOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetAuthnContextOk() (*string, bool)`
|
||||
|
||||
GetAuthnContextOk returns a tuple with the AuthnContext field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetAuthnContext(v string)`
|
||||
|
||||
SetAuthnContext sets AuthnContext field to given value.
|
||||
|
||||
### HasAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasAuthnContext() bool`
|
||||
|
||||
HasAuthnContext returns a boolean if a field has been set.
|
||||
|
||||
### GetLogoutUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLogoutUrl() string`
|
||||
|
||||
GetLogoutUrl returns the LogoutUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLogoutUrlOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLogoutUrlOk() (*string, bool)`
|
||||
|
||||
GetLogoutUrlOk returns a tuple with the LogoutUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLogoutUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetLogoutUrl(v string)`
|
||||
|
||||
SetLogoutUrl sets LogoutUrl field to given value.
|
||||
|
||||
### HasLogoutUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasLogoutUrl() bool`
|
||||
|
||||
HasLogoutUrl returns a boolean if a field has been set.
|
||||
|
||||
### GetIncludeAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetIncludeAuthnContext() bool`
|
||||
|
||||
GetIncludeAuthnContext returns the IncludeAuthnContext field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIncludeAuthnContextOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetIncludeAuthnContextOk() (*bool, bool)`
|
||||
|
||||
GetIncludeAuthnContextOk returns a tuple with the IncludeAuthnContext field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIncludeAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetIncludeAuthnContext(v bool)`
|
||||
|
||||
SetIncludeAuthnContext sets IncludeAuthnContext field to given value.
|
||||
|
||||
### HasIncludeAuthnContext
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasIncludeAuthnContext() bool`
|
||||
|
||||
HasIncludeAuthnContext returns a boolean if a field has been set.
|
||||
|
||||
### GetNameId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetNameId() string`
|
||||
|
||||
GetNameId returns the NameId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameIdOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetNameIdOk() (*string, bool)`
|
||||
|
||||
GetNameIdOk returns a tuple with the NameId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetNameId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetNameId(v string)`
|
||||
|
||||
SetNameId sets NameId field to given value.
|
||||
|
||||
### HasNameId
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasNameId() bool`
|
||||
|
||||
HasNameId returns a boolean if a field has been set.
|
||||
|
||||
### GetJitConfiguration
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetJitConfiguration() JITConfiguration`
|
||||
|
||||
GetJitConfiguration returns the JitConfiguration field if non-nil, zero value otherwise.
|
||||
|
||||
### GetJitConfigurationOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetJitConfigurationOk() (*JITConfiguration, bool)`
|
||||
|
||||
GetJitConfigurationOk returns a tuple with the JitConfiguration field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetJitConfiguration
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetJitConfiguration(v JITConfiguration)`
|
||||
|
||||
SetJitConfiguration sets JitConfiguration field to given value.
|
||||
|
||||
### HasJitConfiguration
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasJitConfiguration() bool`
|
||||
|
||||
HasJitConfiguration returns a boolean if a field has been set.
|
||||
|
||||
### GetCert
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCert() string`
|
||||
|
||||
GetCert returns the Cert field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCertOk() (*string, bool)`
|
||||
|
||||
GetCertOk returns a tuple with the Cert field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCert
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetCert(v string)`
|
||||
|
||||
SetCert sets Cert field to given value.
|
||||
|
||||
### HasCert
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasCert() bool`
|
||||
|
||||
HasCert returns a boolean if a field has been set.
|
||||
|
||||
### GetLoginUrlPost
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLoginUrlPost() string`
|
||||
|
||||
GetLoginUrlPost returns the LoginUrlPost field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLoginUrlPostOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLoginUrlPostOk() (*string, bool)`
|
||||
|
||||
GetLoginUrlPostOk returns a tuple with the LoginUrlPost field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLoginUrlPost
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetLoginUrlPost(v string)`
|
||||
|
||||
SetLoginUrlPost sets LoginUrlPost field to given value.
|
||||
|
||||
### HasLoginUrlPost
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasLoginUrlPost() bool`
|
||||
|
||||
HasLoginUrlPost returns a boolean if a field has been set.
|
||||
|
||||
### GetLoginUrlRedirect
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLoginUrlRedirect() string`
|
||||
|
||||
GetLoginUrlRedirect returns the LoginUrlRedirect field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLoginUrlRedirectOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLoginUrlRedirectOk() (*string, bool)`
|
||||
|
||||
GetLoginUrlRedirectOk returns a tuple with the LoginUrlRedirect field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLoginUrlRedirect
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetLoginUrlRedirect(v string)`
|
||||
|
||||
SetLoginUrlRedirect sets LoginUrlRedirect field to given value.
|
||||
|
||||
### HasLoginUrlRedirect
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasLoginUrlRedirect() bool`
|
||||
|
||||
HasLoginUrlRedirect returns a boolean if a field has been set.
|
||||
|
||||
### GetMappingAttribute
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetMappingAttribute() string`
|
||||
|
||||
GetMappingAttribute returns the MappingAttribute field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMappingAttributeOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetMappingAttributeOk() (*string, bool)`
|
||||
|
||||
GetMappingAttributeOk returns a tuple with the MappingAttribute field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMappingAttribute
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetMappingAttribute(v string)`
|
||||
|
||||
SetMappingAttribute sets MappingAttribute field to given value.
|
||||
|
||||
|
||||
### GetCertificateExpirationDate
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCertificateExpirationDate() string`
|
||||
|
||||
GetCertificateExpirationDate returns the CertificateExpirationDate field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertificateExpirationDateOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCertificateExpirationDateOk() (*string, bool)`
|
||||
|
||||
GetCertificateExpirationDateOk returns a tuple with the CertificateExpirationDate field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCertificateExpirationDate
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetCertificateExpirationDate(v string)`
|
||||
|
||||
SetCertificateExpirationDate sets CertificateExpirationDate field to given value.
|
||||
|
||||
### HasCertificateExpirationDate
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasCertificateExpirationDate() bool`
|
||||
|
||||
HasCertificateExpirationDate returns a boolean if a field has been set.
|
||||
|
||||
### GetCertificateName
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCertificateName() string`
|
||||
|
||||
GetCertificateName returns the CertificateName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCertificateNameOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCertificateNameOk() (*string, bool)`
|
||||
|
||||
GetCertificateNameOk returns a tuple with the CertificateName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCertificateName
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetCertificateName(v string)`
|
||||
|
||||
SetCertificateName sets CertificateName field to given value.
|
||||
|
||||
### HasCertificateName
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasCertificateName() bool`
|
||||
|
||||
HasCertificateName returns a boolean if a field has been set.
|
||||
|
||||
### GetAlias
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetAlias() string`
|
||||
|
||||
GetAlias returns the Alias field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAliasOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetAliasOk() (*string, bool)`
|
||||
|
||||
GetAliasOk returns a tuple with the Alias field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAlias
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetAlias(v string)`
|
||||
|
||||
SetAlias sets Alias field to given value.
|
||||
|
||||
### HasAlias
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasAlias() bool`
|
||||
|
||||
HasAlias returns a boolean if a field has been set.
|
||||
|
||||
### GetCallbackUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCallbackUrl() string`
|
||||
|
||||
GetCallbackUrl returns the CallbackUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCallbackUrlOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetCallbackUrlOk() (*string, bool)`
|
||||
|
||||
GetCallbackUrlOk returns a tuple with the CallbackUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCallbackUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetCallbackUrl(v string)`
|
||||
|
||||
SetCallbackUrl sets CallbackUrl field to given value.
|
||||
|
||||
|
||||
### GetLegacyAcsUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLegacyAcsUrl() string`
|
||||
|
||||
GetLegacyAcsUrl returns the LegacyAcsUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLegacyAcsUrlOk
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) GetLegacyAcsUrlOk() (*string, bool)`
|
||||
|
||||
GetLegacyAcsUrlOk returns a tuple with the LegacyAcsUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLegacyAcsUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) SetLegacyAcsUrl(v string)`
|
||||
|
||||
SetLegacyAcsUrl sets LegacyAcsUrl field to given value.
|
||||
|
||||
### HasLegacyAcsUrl
|
||||
|
||||
`func (o *ServiceProviderConfigurationFederationProtocolDetailsInner) HasLegacyAcsUrl() bool`
|
||||
|
||||
HasLegacyAcsUrl returns a boolean if a field has been set.
|
||||
|
||||
|
||||
116
docs/tools/sdk/go/Reference/V2024/Models/SessionConfiguration.md
Normal file
116
docs/tools/sdk/go/Reference/V2024/Models/SessionConfiguration.md
Normal file
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2024-session-configuration
|
||||
title: SessionConfiguration
|
||||
pagination_label: SessionConfiguration
|
||||
sidebar_label: SessionConfiguration
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'SessionConfiguration', 'V2024SessionConfiguration']
|
||||
slug: /tools/sdk/go/v2024/models/session-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'SessionConfiguration', 'V2024SessionConfiguration']
|
||||
---
|
||||
|
||||
# SessionConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**MaxIdleTime** | Pointer to **int32** | The maximum time in minutes a session can be idle. | [optional]
|
||||
**RememberMe** | Pointer to **bool** | Denotes if 'remember me' is enabled. | [optional] [default to false]
|
||||
**MaxSessionTime** | Pointer to **int32** | The maximum allowable session time in minutes. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSessionConfiguration
|
||||
|
||||
`func NewSessionConfiguration() *SessionConfiguration`
|
||||
|
||||
NewSessionConfiguration instantiates a new SessionConfiguration 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
|
||||
|
||||
### NewSessionConfigurationWithDefaults
|
||||
|
||||
`func NewSessionConfigurationWithDefaults() *SessionConfiguration`
|
||||
|
||||
NewSessionConfigurationWithDefaults instantiates a new SessionConfiguration 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
|
||||
|
||||
### GetMaxIdleTime
|
||||
|
||||
`func (o *SessionConfiguration) GetMaxIdleTime() int32`
|
||||
|
||||
GetMaxIdleTime returns the MaxIdleTime field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMaxIdleTimeOk
|
||||
|
||||
`func (o *SessionConfiguration) GetMaxIdleTimeOk() (*int32, bool)`
|
||||
|
||||
GetMaxIdleTimeOk returns a tuple with the MaxIdleTime field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMaxIdleTime
|
||||
|
||||
`func (o *SessionConfiguration) SetMaxIdleTime(v int32)`
|
||||
|
||||
SetMaxIdleTime sets MaxIdleTime field to given value.
|
||||
|
||||
### HasMaxIdleTime
|
||||
|
||||
`func (o *SessionConfiguration) HasMaxIdleTime() bool`
|
||||
|
||||
HasMaxIdleTime returns a boolean if a field has been set.
|
||||
|
||||
### GetRememberMe
|
||||
|
||||
`func (o *SessionConfiguration) GetRememberMe() bool`
|
||||
|
||||
GetRememberMe returns the RememberMe field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRememberMeOk
|
||||
|
||||
`func (o *SessionConfiguration) GetRememberMeOk() (*bool, bool)`
|
||||
|
||||
GetRememberMeOk returns a tuple with the RememberMe field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRememberMe
|
||||
|
||||
`func (o *SessionConfiguration) SetRememberMe(v bool)`
|
||||
|
||||
SetRememberMe sets RememberMe field to given value.
|
||||
|
||||
### HasRememberMe
|
||||
|
||||
`func (o *SessionConfiguration) HasRememberMe() bool`
|
||||
|
||||
HasRememberMe returns a boolean if a field has been set.
|
||||
|
||||
### GetMaxSessionTime
|
||||
|
||||
`func (o *SessionConfiguration) GetMaxSessionTime() int32`
|
||||
|
||||
GetMaxSessionTime returns the MaxSessionTime field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMaxSessionTimeOk
|
||||
|
||||
`func (o *SessionConfiguration) GetMaxSessionTimeOk() (*int32, bool)`
|
||||
|
||||
GetMaxSessionTimeOk returns a tuple with the MaxSessionTime field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMaxSessionTime
|
||||
|
||||
`func (o *SessionConfiguration) SetMaxSessionTime(v int32)`
|
||||
|
||||
SetMaxSessionTime sets MaxSessionTime field to given value.
|
||||
|
||||
### HasMaxSessionTime
|
||||
|
||||
`func (o *SessionConfiguration) HasMaxSessionTime() bool`
|
||||
|
||||
HasMaxSessionTime returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
---
|
||||
id: v2024-source-account-selections
|
||||
title: SourceAccountSelections
|
||||
pagination_label: SourceAccountSelections
|
||||
sidebar_label: SourceAccountSelections
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'SourceAccountSelections', 'V2024SourceAccountSelections']
|
||||
slug: /tools/sdk/go/v2024/models/source-account-selections
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceAccountSelections', 'V2024SourceAccountSelections']
|
||||
---
|
||||
|
||||
# SourceAccountSelections
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
|
||||
**Id** | Pointer to **string** | The source id | [optional]
|
||||
**Name** | Pointer to **string** | The source name | [optional]
|
||||
**Accounts** | Pointer to [**[]AccountInfoRef**](account-info-ref) | The accounts information for a particular source in the requested item | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSourceAccountSelections
|
||||
|
||||
`func NewSourceAccountSelections() *SourceAccountSelections`
|
||||
|
||||
NewSourceAccountSelections instantiates a new SourceAccountSelections 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
|
||||
|
||||
### NewSourceAccountSelectionsWithDefaults
|
||||
|
||||
`func NewSourceAccountSelectionsWithDefaults() *SourceAccountSelections`
|
||||
|
||||
NewSourceAccountSelectionsWithDefaults instantiates a new SourceAccountSelections 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
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *SourceAccountSelections) GetType() DtoType`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *SourceAccountSelections) GetTypeOk() (*DtoType, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *SourceAccountSelections) SetType(v DtoType)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
### HasType
|
||||
|
||||
`func (o *SourceAccountSelections) HasType() bool`
|
||||
|
||||
HasType returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *SourceAccountSelections) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *SourceAccountSelections) 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 *SourceAccountSelections) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *SourceAccountSelections) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetName
|
||||
|
||||
`func (o *SourceAccountSelections) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *SourceAccountSelections) 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 *SourceAccountSelections) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *SourceAccountSelections) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
### GetAccounts
|
||||
|
||||
`func (o *SourceAccountSelections) GetAccounts() []AccountInfoRef`
|
||||
|
||||
GetAccounts returns the Accounts field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountsOk
|
||||
|
||||
`func (o *SourceAccountSelections) GetAccountsOk() (*[]AccountInfoRef, bool)`
|
||||
|
||||
GetAccountsOk returns a tuple with the Accounts field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccounts
|
||||
|
||||
`func (o *SourceAccountSelections) SetAccounts(v []AccountInfoRef)`
|
||||
|
||||
SetAccounts sets Accounts field to given value.
|
||||
|
||||
### HasAccounts
|
||||
|
||||
`func (o *SourceAccountSelections) HasAccounts() bool`
|
||||
|
||||
HasAccounts returns a boolean if a field has been set.
|
||||
|
||||
|
||||
110
docs/tools/sdk/go/Reference/V2024/Models/SourceItemRef.md
Normal file
110
docs/tools/sdk/go/Reference/V2024/Models/SourceItemRef.md
Normal file
@@ -0,0 +1,110 @@
|
||||
---
|
||||
id: v2024-source-item-ref
|
||||
title: SourceItemRef
|
||||
pagination_label: SourceItemRef
|
||||
sidebar_label: SourceItemRef
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'SourceItemRef', 'V2024SourceItemRef']
|
||||
slug: /tools/sdk/go/v2024/models/source-item-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceItemRef', 'V2024SourceItemRef']
|
||||
---
|
||||
|
||||
# SourceItemRef
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**SourceId** | Pointer to **NullableString** | The id for the source on which account selections are made | [optional]
|
||||
**Accounts** | Pointer to [**[]AccountItemRef**](account-item-ref) | A list of account selections on the source. Currently, only one selection per source is supported. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSourceItemRef
|
||||
|
||||
`func NewSourceItemRef() *SourceItemRef`
|
||||
|
||||
NewSourceItemRef instantiates a new SourceItemRef 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
|
||||
|
||||
### NewSourceItemRefWithDefaults
|
||||
|
||||
`func NewSourceItemRefWithDefaults() *SourceItemRef`
|
||||
|
||||
NewSourceItemRefWithDefaults instantiates a new SourceItemRef 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
|
||||
|
||||
### GetSourceId
|
||||
|
||||
`func (o *SourceItemRef) GetSourceId() string`
|
||||
|
||||
GetSourceId returns the SourceId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourceIdOk
|
||||
|
||||
`func (o *SourceItemRef) GetSourceIdOk() (*string, bool)`
|
||||
|
||||
GetSourceIdOk returns a tuple with the SourceId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSourceId
|
||||
|
||||
`func (o *SourceItemRef) SetSourceId(v string)`
|
||||
|
||||
SetSourceId sets SourceId field to given value.
|
||||
|
||||
### HasSourceId
|
||||
|
||||
`func (o *SourceItemRef) HasSourceId() bool`
|
||||
|
||||
HasSourceId returns a boolean if a field has been set.
|
||||
|
||||
### SetSourceIdNil
|
||||
|
||||
`func (o *SourceItemRef) SetSourceIdNil(b bool)`
|
||||
|
||||
SetSourceIdNil sets the value for SourceId to be an explicit nil
|
||||
|
||||
### UnsetSourceId
|
||||
`func (o *SourceItemRef) UnsetSourceId()`
|
||||
|
||||
UnsetSourceId ensures that no value is present for SourceId, not even an explicit nil
|
||||
### GetAccounts
|
||||
|
||||
`func (o *SourceItemRef) GetAccounts() []AccountItemRef`
|
||||
|
||||
GetAccounts returns the Accounts field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountsOk
|
||||
|
||||
`func (o *SourceItemRef) GetAccountsOk() (*[]AccountItemRef, bool)`
|
||||
|
||||
GetAccountsOk returns a tuple with the Accounts field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccounts
|
||||
|
||||
`func (o *SourceItemRef) SetAccounts(v []AccountItemRef)`
|
||||
|
||||
SetAccounts sets Accounts field to given value.
|
||||
|
||||
### HasAccounts
|
||||
|
||||
`func (o *SourceItemRef) HasAccounts() bool`
|
||||
|
||||
HasAccounts returns a boolean if a field has been set.
|
||||
|
||||
### SetAccountsNil
|
||||
|
||||
`func (o *SourceItemRef) SetAccountsNil(b bool)`
|
||||
|
||||
SetAccountsNil sets the value for Accounts to be an explicit nil
|
||||
|
||||
### UnsetAccounts
|
||||
`func (o *SourceItemRef) UnsetAccounts()`
|
||||
|
||||
UnsetAccounts ensures that no value is present for Accounts, not even an explicit nil
|
||||
|
||||
163
docs/tools/sdk/go/Reference/V2024/Models/SpDetails.md
Normal file
163
docs/tools/sdk/go/Reference/V2024/Models/SpDetails.md
Normal file
@@ -0,0 +1,163 @@
|
||||
---
|
||||
id: v2024-sp-details
|
||||
title: SpDetails
|
||||
pagination_label: SpDetails
|
||||
sidebar_label: SpDetails
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'SpDetails', 'V2024SpDetails']
|
||||
slug: /tools/sdk/go/v2024/models/sp-details
|
||||
tags: ['SDK', 'Software Development Kit', 'SpDetails', 'V2024SpDetails']
|
||||
---
|
||||
|
||||
# SpDetails
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Role** | Pointer to **string** | Federation protocol role | [optional]
|
||||
**EntityId** | Pointer to **string** | An entity ID is a globally unique name for a SAML entity, either an Identity Provider (IDP) or a Service Provider (SP). | [optional]
|
||||
**Alias** | Pointer to **string** | Unique alias used to identify the selected local service provider based on used URL. Used with SP configurations. | [optional]
|
||||
**CallbackUrl** | **string** | The allowed callback URL where users will be redirected to after authentication. Used with SP configurations. |
|
||||
**LegacyAcsUrl** | Pointer to **string** | The legacy ACS URL used for SAML authentication. Used with SP configurations. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSpDetails
|
||||
|
||||
`func NewSpDetails(callbackUrl string, ) *SpDetails`
|
||||
|
||||
NewSpDetails instantiates a new SpDetails 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
|
||||
|
||||
### NewSpDetailsWithDefaults
|
||||
|
||||
`func NewSpDetailsWithDefaults() *SpDetails`
|
||||
|
||||
NewSpDetailsWithDefaults instantiates a new SpDetails 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
|
||||
|
||||
### GetRole
|
||||
|
||||
`func (o *SpDetails) GetRole() string`
|
||||
|
||||
GetRole returns the Role field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleOk
|
||||
|
||||
`func (o *SpDetails) GetRoleOk() (*string, bool)`
|
||||
|
||||
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRole
|
||||
|
||||
`func (o *SpDetails) SetRole(v string)`
|
||||
|
||||
SetRole sets Role field to given value.
|
||||
|
||||
### HasRole
|
||||
|
||||
`func (o *SpDetails) HasRole() bool`
|
||||
|
||||
HasRole returns a boolean if a field has been set.
|
||||
|
||||
### GetEntityId
|
||||
|
||||
`func (o *SpDetails) GetEntityId() string`
|
||||
|
||||
GetEntityId returns the EntityId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEntityIdOk
|
||||
|
||||
`func (o *SpDetails) GetEntityIdOk() (*string, bool)`
|
||||
|
||||
GetEntityIdOk returns a tuple with the EntityId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetEntityId
|
||||
|
||||
`func (o *SpDetails) SetEntityId(v string)`
|
||||
|
||||
SetEntityId sets EntityId field to given value.
|
||||
|
||||
### HasEntityId
|
||||
|
||||
`func (o *SpDetails) HasEntityId() bool`
|
||||
|
||||
HasEntityId returns a boolean if a field has been set.
|
||||
|
||||
### GetAlias
|
||||
|
||||
`func (o *SpDetails) GetAlias() string`
|
||||
|
||||
GetAlias returns the Alias field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAliasOk
|
||||
|
||||
`func (o *SpDetails) GetAliasOk() (*string, bool)`
|
||||
|
||||
GetAliasOk returns a tuple with the Alias field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAlias
|
||||
|
||||
`func (o *SpDetails) SetAlias(v string)`
|
||||
|
||||
SetAlias sets Alias field to given value.
|
||||
|
||||
### HasAlias
|
||||
|
||||
`func (o *SpDetails) HasAlias() bool`
|
||||
|
||||
HasAlias returns a boolean if a field has been set.
|
||||
|
||||
### GetCallbackUrl
|
||||
|
||||
`func (o *SpDetails) GetCallbackUrl() string`
|
||||
|
||||
GetCallbackUrl returns the CallbackUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCallbackUrlOk
|
||||
|
||||
`func (o *SpDetails) GetCallbackUrlOk() (*string, bool)`
|
||||
|
||||
GetCallbackUrlOk returns a tuple with the CallbackUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCallbackUrl
|
||||
|
||||
`func (o *SpDetails) SetCallbackUrl(v string)`
|
||||
|
||||
SetCallbackUrl sets CallbackUrl field to given value.
|
||||
|
||||
|
||||
### GetLegacyAcsUrl
|
||||
|
||||
`func (o *SpDetails) GetLegacyAcsUrl() string`
|
||||
|
||||
GetLegacyAcsUrl returns the LegacyAcsUrl field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLegacyAcsUrlOk
|
||||
|
||||
`func (o *SpDetails) GetLegacyAcsUrlOk() (*string, bool)`
|
||||
|
||||
GetLegacyAcsUrlOk returns a tuple with the LegacyAcsUrl field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLegacyAcsUrl
|
||||
|
||||
`func (o *SpDetails) SetLegacyAcsUrl(v string)`
|
||||
|
||||
SetLegacyAcsUrl sets LegacyAcsUrl field to given value.
|
||||
|
||||
### HasLegacyAcsUrl
|
||||
|
||||
`func (o *SpDetails) HasLegacyAcsUrl() bool`
|
||||
|
||||
HasLegacyAcsUrl returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -17,13 +17,13 @@ Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | **string** | The trigger type |
|
||||
**DisplayName** | Pointer to **NullableString** | | [optional]
|
||||
**Attributes** | [**NullableWorkflowTriggerAttributes**](workflow-trigger-attributes) | |
|
||||
**Attributes** | **map[string]interface{}** | Workflow Trigger Attributes. |
|
||||
|
||||
## Methods
|
||||
|
||||
### NewWorkflowTrigger
|
||||
|
||||
`func NewWorkflowTrigger(type_ string, attributes NullableWorkflowTriggerAttributes, ) *WorkflowTrigger`
|
||||
`func NewWorkflowTrigger(type_ string, attributes map[string]interface{}, ) *WorkflowTrigger`
|
||||
|
||||
NewWorkflowTrigger instantiates a new WorkflowTrigger object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
@@ -95,20 +95,20 @@ HasDisplayName returns a boolean if a field has been set.
|
||||
UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil
|
||||
### GetAttributes
|
||||
|
||||
`func (o *WorkflowTrigger) GetAttributes() WorkflowTriggerAttributes`
|
||||
`func (o *WorkflowTrigger) GetAttributes() map[string]interface{}`
|
||||
|
||||
GetAttributes returns the Attributes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributesOk
|
||||
|
||||
`func (o *WorkflowTrigger) GetAttributesOk() (*WorkflowTriggerAttributes, bool)`
|
||||
`func (o *WorkflowTrigger) GetAttributesOk() (*map[string]interface{}, bool)`
|
||||
|
||||
GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAttributes
|
||||
|
||||
`func (o *WorkflowTrigger) SetAttributes(v WorkflowTriggerAttributes)`
|
||||
`func (o *WorkflowTrigger) SetAttributes(v map[string]interface{})`
|
||||
|
||||
SetAttributes sets Attributes field to given value.
|
||||
|
||||
|
||||
@@ -1,532 +0,0 @@
|
||||
---
|
||||
id: v2024-workflow-trigger-attributes
|
||||
title: WorkflowTriggerAttributes
|
||||
pagination_label: WorkflowTriggerAttributes
|
||||
sidebar_label: WorkflowTriggerAttributes
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'WorkflowTriggerAttributes', 'V2024WorkflowTriggerAttributes']
|
||||
slug: /tools/sdk/go/v2024/models/workflow-trigger-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'WorkflowTriggerAttributes', 'V2024WorkflowTriggerAttributes']
|
||||
---
|
||||
|
||||
# WorkflowTriggerAttributes
|
||||
|
||||
## 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** | Additional context about the external trigger | [optional]
|
||||
**AttributeToFilter** | Pointer to **NullableString** | The attribute to filter on | [optional]
|
||||
**FormDefinitionId** | Pointer to **NullableString** | Form definition's unique identifier. | [optional]
|
||||
**Name** | Pointer to **NullableString** | A unique name for 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]
|
||||
**Frequency** | **NullableString** | Frequency of execution |
|
||||
**TimeZone** | Pointer to **NullableString** | Time zone identifier | [optional]
|
||||
**CronString** | Pointer to **NullableString** | A valid CRON expression | [optional]
|
||||
**WeeklyDays** | Pointer to **[]string** | Scheduled days of the week for execution | [optional]
|
||||
**WeeklyTimes** | Pointer to **[]string** | Scheduled execution times | [optional]
|
||||
**YearlyTimes** | Pointer to **[]string** | Scheduled execution times | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewWorkflowTriggerAttributes
|
||||
|
||||
`func NewWorkflowTriggerAttributes(id NullableString, frequency NullableString, ) *WorkflowTriggerAttributes`
|
||||
|
||||
NewWorkflowTriggerAttributes instantiates a new WorkflowTriggerAttributes 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
|
||||
|
||||
### NewWorkflowTriggerAttributesWithDefaults
|
||||
|
||||
`func NewWorkflowTriggerAttributesWithDefaults() *WorkflowTriggerAttributes`
|
||||
|
||||
NewWorkflowTriggerAttributesWithDefaults instantiates a new WorkflowTriggerAttributes 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 *WorkflowTriggerAttributes) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
|
||||
### SetIdNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetIdNil(b bool)`
|
||||
|
||||
SetIdNil sets the value for Id to be an explicit nil
|
||||
|
||||
### UnsetId
|
||||
`func (o *WorkflowTriggerAttributes) UnsetId()`
|
||||
|
||||
UnsetId ensures that no value is present for Id, not even an explicit nil
|
||||
### GetFilter
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetFilter() string`
|
||||
|
||||
GetFilter returns the Filter field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFilterOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetFilter(v string)`
|
||||
|
||||
SetFilter sets Filter field to given value.
|
||||
|
||||
### HasFilter
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasFilter() bool`
|
||||
|
||||
HasFilter returns a boolean if a field has been set.
|
||||
|
||||
### SetFilterNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetFilterNil(b bool)`
|
||||
|
||||
SetFilterNil sets the value for Filter to be an explicit nil
|
||||
|
||||
### UnsetFilter
|
||||
`func (o *WorkflowTriggerAttributes) UnsetFilter()`
|
||||
|
||||
UnsetFilter ensures that no value is present for Filter, not even an explicit nil
|
||||
### GetDescription
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetDescription() string`
|
||||
|
||||
GetDescription returns the Description field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDescriptionOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetDescription(v string)`
|
||||
|
||||
SetDescription sets Description field to given value.
|
||||
|
||||
### HasDescription
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasDescription() bool`
|
||||
|
||||
HasDescription returns a boolean if a field has been set.
|
||||
|
||||
### SetDescriptionNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetDescriptionNil(b bool)`
|
||||
|
||||
SetDescriptionNil sets the value for Description to be an explicit nil
|
||||
|
||||
### UnsetDescription
|
||||
`func (o *WorkflowTriggerAttributes) UnsetDescription()`
|
||||
|
||||
UnsetDescription ensures that no value is present for Description, not even an explicit nil
|
||||
### GetAttributeToFilter
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetAttributeToFilter() string`
|
||||
|
||||
GetAttributeToFilter returns the AttributeToFilter field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAttributeToFilterOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetAttributeToFilter(v string)`
|
||||
|
||||
SetAttributeToFilter sets AttributeToFilter field to given value.
|
||||
|
||||
### HasAttributeToFilter
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasAttributeToFilter() bool`
|
||||
|
||||
HasAttributeToFilter returns a boolean if a field has been set.
|
||||
|
||||
### SetAttributeToFilterNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetAttributeToFilterNil(b bool)`
|
||||
|
||||
SetAttributeToFilterNil sets the value for AttributeToFilter to be an explicit nil
|
||||
|
||||
### UnsetAttributeToFilter
|
||||
`func (o *WorkflowTriggerAttributes) UnsetAttributeToFilter()`
|
||||
|
||||
UnsetAttributeToFilter ensures that no value is present for AttributeToFilter, not even an explicit nil
|
||||
### GetFormDefinitionId
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetFormDefinitionId() string`
|
||||
|
||||
GetFormDefinitionId returns the FormDefinitionId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFormDefinitionIdOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetFormDefinitionId(v string)`
|
||||
|
||||
SetFormDefinitionId sets FormDefinitionId field to given value.
|
||||
|
||||
### HasFormDefinitionId
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasFormDefinitionId() bool`
|
||||
|
||||
HasFormDefinitionId returns a boolean if a field has been set.
|
||||
|
||||
### SetFormDefinitionIdNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetFormDefinitionIdNil(b bool)`
|
||||
|
||||
SetFormDefinitionIdNil sets the value for FormDefinitionId to be an explicit nil
|
||||
|
||||
### UnsetFormDefinitionId
|
||||
`func (o *WorkflowTriggerAttributes) UnsetFormDefinitionId()`
|
||||
|
||||
UnsetFormDefinitionId ensures that no value is present for FormDefinitionId, not even an explicit nil
|
||||
### GetName
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetName() string`
|
||||
|
||||
GetName returns the Name field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNameOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetName(v string)`
|
||||
|
||||
SetName sets Name field to given value.
|
||||
|
||||
### HasName
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasName() bool`
|
||||
|
||||
HasName returns a boolean if a field has been set.
|
||||
|
||||
### SetNameNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetNameNil(b bool)`
|
||||
|
||||
SetNameNil sets the value for Name to be an explicit nil
|
||||
|
||||
### UnsetName
|
||||
`func (o *WorkflowTriggerAttributes) UnsetName()`
|
||||
|
||||
UnsetName ensures that no value is present for Name, not even an explicit nil
|
||||
### GetClientId
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetClientId() string`
|
||||
|
||||
GetClientId returns the ClientId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetClientIdOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetClientId(v string)`
|
||||
|
||||
SetClientId sets ClientId field to given value.
|
||||
|
||||
### HasClientId
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasClientId() bool`
|
||||
|
||||
HasClientId returns a boolean if a field has been set.
|
||||
|
||||
### SetClientIdNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetClientIdNil(b bool)`
|
||||
|
||||
SetClientIdNil sets the value for ClientId to be an explicit nil
|
||||
|
||||
### UnsetClientId
|
||||
`func (o *WorkflowTriggerAttributes) UnsetClientId()`
|
||||
|
||||
UnsetClientId ensures that no value is present for ClientId, not even an explicit nil
|
||||
### GetUrl
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetUrl() string`
|
||||
|
||||
GetUrl returns the Url field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUrlOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) 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 *WorkflowTriggerAttributes) SetUrl(v string)`
|
||||
|
||||
SetUrl sets Url field to given value.
|
||||
|
||||
### HasUrl
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasUrl() bool`
|
||||
|
||||
HasUrl returns a boolean if a field has been set.
|
||||
|
||||
### SetUrlNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetUrlNil(b bool)`
|
||||
|
||||
SetUrlNil sets the value for Url to be an explicit nil
|
||||
|
||||
### UnsetUrl
|
||||
`func (o *WorkflowTriggerAttributes) UnsetUrl()`
|
||||
|
||||
UnsetUrl ensures that no value is present for Url, not even an explicit nil
|
||||
### GetFrequency
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetFrequency() string`
|
||||
|
||||
GetFrequency returns the Frequency field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFrequencyOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetFrequencyOk() (*string, bool)`
|
||||
|
||||
GetFrequencyOk returns a tuple with the Frequency field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetFrequency
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetFrequency(v string)`
|
||||
|
||||
SetFrequency sets Frequency field to given value.
|
||||
|
||||
|
||||
### SetFrequencyNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetFrequencyNil(b bool)`
|
||||
|
||||
SetFrequencyNil sets the value for Frequency to be an explicit nil
|
||||
|
||||
### UnsetFrequency
|
||||
`func (o *WorkflowTriggerAttributes) UnsetFrequency()`
|
||||
|
||||
UnsetFrequency ensures that no value is present for Frequency, not even an explicit nil
|
||||
### GetTimeZone
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetTimeZone() string`
|
||||
|
||||
GetTimeZone returns the TimeZone field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTimeZoneOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetTimeZoneOk() (*string, bool)`
|
||||
|
||||
GetTimeZoneOk returns a tuple with the TimeZone field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTimeZone
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetTimeZone(v string)`
|
||||
|
||||
SetTimeZone sets TimeZone field to given value.
|
||||
|
||||
### HasTimeZone
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasTimeZone() bool`
|
||||
|
||||
HasTimeZone returns a boolean if a field has been set.
|
||||
|
||||
### SetTimeZoneNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetTimeZoneNil(b bool)`
|
||||
|
||||
SetTimeZoneNil sets the value for TimeZone to be an explicit nil
|
||||
|
||||
### UnsetTimeZone
|
||||
`func (o *WorkflowTriggerAttributes) UnsetTimeZone()`
|
||||
|
||||
UnsetTimeZone ensures that no value is present for TimeZone, not even an explicit nil
|
||||
### GetCronString
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetCronString() string`
|
||||
|
||||
GetCronString returns the CronString field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCronStringOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetCronStringOk() (*string, bool)`
|
||||
|
||||
GetCronStringOk returns a tuple with the CronString field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCronString
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetCronString(v string)`
|
||||
|
||||
SetCronString sets CronString field to given value.
|
||||
|
||||
### HasCronString
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasCronString() bool`
|
||||
|
||||
HasCronString returns a boolean if a field has been set.
|
||||
|
||||
### SetCronStringNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetCronStringNil(b bool)`
|
||||
|
||||
SetCronStringNil sets the value for CronString to be an explicit nil
|
||||
|
||||
### UnsetCronString
|
||||
`func (o *WorkflowTriggerAttributes) UnsetCronString()`
|
||||
|
||||
UnsetCronString ensures that no value is present for CronString, not even an explicit nil
|
||||
### GetWeeklyDays
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetWeeklyDays() []string`
|
||||
|
||||
GetWeeklyDays returns the WeeklyDays field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWeeklyDaysOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetWeeklyDaysOk() (*[]string, bool)`
|
||||
|
||||
GetWeeklyDaysOk returns a tuple with the WeeklyDays field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWeeklyDays
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetWeeklyDays(v []string)`
|
||||
|
||||
SetWeeklyDays sets WeeklyDays field to given value.
|
||||
|
||||
### HasWeeklyDays
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasWeeklyDays() bool`
|
||||
|
||||
HasWeeklyDays returns a boolean if a field has been set.
|
||||
|
||||
### SetWeeklyDaysNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetWeeklyDaysNil(b bool)`
|
||||
|
||||
SetWeeklyDaysNil sets the value for WeeklyDays to be an explicit nil
|
||||
|
||||
### UnsetWeeklyDays
|
||||
`func (o *WorkflowTriggerAttributes) UnsetWeeklyDays()`
|
||||
|
||||
UnsetWeeklyDays ensures that no value is present for WeeklyDays, not even an explicit nil
|
||||
### GetWeeklyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetWeeklyTimes() []string`
|
||||
|
||||
GetWeeklyTimes returns the WeeklyTimes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWeeklyTimesOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetWeeklyTimesOk() (*[]string, bool)`
|
||||
|
||||
GetWeeklyTimesOk returns a tuple with the WeeklyTimes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWeeklyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetWeeklyTimes(v []string)`
|
||||
|
||||
SetWeeklyTimes sets WeeklyTimes field to given value.
|
||||
|
||||
### HasWeeklyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasWeeklyTimes() bool`
|
||||
|
||||
HasWeeklyTimes returns a boolean if a field has been set.
|
||||
|
||||
### SetWeeklyTimesNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetWeeklyTimesNil(b bool)`
|
||||
|
||||
SetWeeklyTimesNil sets the value for WeeklyTimes to be an explicit nil
|
||||
|
||||
### UnsetWeeklyTimes
|
||||
`func (o *WorkflowTriggerAttributes) UnsetWeeklyTimes()`
|
||||
|
||||
UnsetWeeklyTimes ensures that no value is present for WeeklyTimes, not even an explicit nil
|
||||
### GetYearlyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetYearlyTimes() []string`
|
||||
|
||||
GetYearlyTimes returns the YearlyTimes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetYearlyTimesOk
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) GetYearlyTimesOk() (*[]string, bool)`
|
||||
|
||||
GetYearlyTimesOk returns a tuple with the YearlyTimes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetYearlyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetYearlyTimes(v []string)`
|
||||
|
||||
SetYearlyTimes sets YearlyTimes field to given value.
|
||||
|
||||
### HasYearlyTimes
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) HasYearlyTimes() bool`
|
||||
|
||||
HasYearlyTimes returns a boolean if a field has been set.
|
||||
|
||||
### SetYearlyTimesNil
|
||||
|
||||
`func (o *WorkflowTriggerAttributes) SetYearlyTimesNil(b bool)`
|
||||
|
||||
SetYearlyTimesNil sets the value for YearlyTimes to be an explicit nil
|
||||
|
||||
### UnsetYearlyTimes
|
||||
`func (o *WorkflowTriggerAttributes) UnsetYearlyTimes()`
|
||||
|
||||
UnsetYearlyTimes ensures that no value is present for YearlyTimes, not even an explicit nil
|
||||
|
||||
Reference in New Issue
Block a user