Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.49 KB

OAuth2ScopeConsentGrant.md

File metadata and controls

43 lines (37 loc) · 1.49 KB

OAuth2ScopeConsentGrant

Properties

Name Type Description Notes
ClientId String [optional]
Created System.DateTime [optional] [readonly]
CreatedBy OAuth2Actor [optional]
Id String [optional] [readonly]
Issuer String [optional]
LastUpdated System.DateTime [optional] [readonly]
ScopeId String [optional]
Source OAuth2ScopeConsentGrantSource [optional]
Status GrantOrTokenStatus [optional]
UserId String [optional]
Embedded System.Collections.Hashtable [optional] [readonly]
Links System.Collections.Hashtable [optional] [readonly]

Examples

  • Prepare the resource
$OAuth2ScopeConsentGrant = Initialize-Okta.PowerShellOAuth2ScopeConsentGrant  -ClientId null `
 -Created null `
 -CreatedBy null `
 -Id null `
 -Issuer null `
 -LastUpdated null `
 -ScopeId null `
 -Source null `
 -Status null `
 -UserId null `
 -Embedded null `
 -Links null
  • Convert the resource to JSON
$OAuth2ScopeConsentGrant | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]