mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
update go docs and examples
This commit is contained in:
@@ -15,9 +15,10 @@ tags: ['SDK', 'Software Development Kit', 'Requestability', 'BetaRequestability'
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**CommentsRequired** | Pointer to **NullableBool** | Whether the requester of the containing object must provide comments justifying the request | [optional] [default to false]
|
||||
**DenialCommentsRequired** | Pointer to **NullableBool** | Whether an approver must provide comments when denying the request | [optional] [default to false]
|
||||
**ApprovalSchemes** | Pointer to [**[]AccessProfileApprovalScheme**](access-profile-approval-scheme) | List describing the steps in approving the request | [optional]
|
||||
**CommentsRequired** | Pointer to **NullableBool** | Indicates whether the requester of the containing object must provide comments justifying the request. | [optional] [default to false]
|
||||
**DenialCommentsRequired** | Pointer to **NullableBool** | Indicates whether an approver must provide comments when denying the request. | [optional] [default to false]
|
||||
**ReauthorizationRequired** | Pointer to **NullableBool** | Indicates whether reauthorization is required for the request. | [optional] [default to false]
|
||||
**ApprovalSchemes** | Pointer to [**[]AccessProfileApprovalScheme**](access-profile-approval-scheme) | List describing the steps involved in approving the request. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -108,6 +109,41 @@ HasDenialCommentsRequired returns a boolean if a field has been set.
|
||||
`func (o *Requestability) UnsetDenialCommentsRequired()`
|
||||
|
||||
UnsetDenialCommentsRequired ensures that no value is present for DenialCommentsRequired, not even an explicit nil
|
||||
### GetReauthorizationRequired
|
||||
|
||||
`func (o *Requestability) GetReauthorizationRequired() bool`
|
||||
|
||||
GetReauthorizationRequired returns the ReauthorizationRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetReauthorizationRequiredOk
|
||||
|
||||
`func (o *Requestability) GetReauthorizationRequiredOk() (*bool, bool)`
|
||||
|
||||
GetReauthorizationRequiredOk returns a tuple with the ReauthorizationRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetReauthorizationRequired
|
||||
|
||||
`func (o *Requestability) SetReauthorizationRequired(v bool)`
|
||||
|
||||
SetReauthorizationRequired sets ReauthorizationRequired field to given value.
|
||||
|
||||
### HasReauthorizationRequired
|
||||
|
||||
`func (o *Requestability) HasReauthorizationRequired() bool`
|
||||
|
||||
HasReauthorizationRequired returns a boolean if a field has been set.
|
||||
|
||||
### SetReauthorizationRequiredNil
|
||||
|
||||
`func (o *Requestability) SetReauthorizationRequiredNil(b bool)`
|
||||
|
||||
SetReauthorizationRequiredNil sets the value for ReauthorizationRequired to be an explicit nil
|
||||
|
||||
### UnsetReauthorizationRequired
|
||||
`func (o *Requestability) UnsetReauthorizationRequired()`
|
||||
|
||||
UnsetReauthorizationRequired ensures that no value is present for ReauthorizationRequired, not even an explicit nil
|
||||
### GetApprovalSchemes
|
||||
|
||||
`func (o *Requestability) GetApprovalSchemes() []AccessProfileApprovalScheme`
|
||||
|
||||
Reference in New Issue
Block a user