Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 900 Bytes

File metadata and controls

27 lines (21 loc) · 900 Bytes

AccessTokenResponse

Properties

Name Type Description Notes
AccessToken String Access token [optional]
ExpiresIn Int32 The lifetime in seconds of the access token
RefreshToken String Refresh token [optional]
TokenType String The type of the token issued [optional]

Examples

  • Prepare the resource
$AccessTokenResponse = Initialize-PSAdGuardDNSAccessTokenResponse  -AccessToken jTFho_aymtN20pZR5RRSQAzd81I `
 -ExpiresIn 2620978 `
 -RefreshToken H3SW6YFJ-tOPe0FQCM1Jd6VnMiA `
 -TokenType bearer
  • Convert the resource to JSON
$AccessTokenResponse | ConvertTo-JSON

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