Class RestrictedTokenResponse
Response from GenerateRestrictedTokenAsync(RestrictedTokenOptions).
Inherited Members
Namespace: Unity.Services.Authentication
Assembly: Unity.Services.Authentication.dll
Syntax
public sealed class RestrictedTokenResponse
Properties
ExpiresIn
Lifetime of the issued ID token, in seconds.
Declaration
public int ExpiresIn { get; }
Property Value
| Type | Description |
|---|---|
| int |
IdToken
The issued ID token.
Declaration
public string IdToken { get; }
Property Value
| Type | Description |
|---|---|
| string |
SessionToken
The issued session token.
Declaration
public string SessionToken { get; }
Property Value
| Type | Description |
|---|---|
| string |
UserId
The player ID the issued tokens belong to.
Declaration
public string UserId { get; }
Property Value
| Type | Description |
|---|---|
| string |