Class BaseJwt
Represents a json web token
Inherited Members
Namespace: Unity.Services.Authentication.PlayerAccounts
Assembly: Unity.Services.Authentication.PlayerAccounts.dll
Syntax
public class BaseJwt
Fields
ExpirationTimeUnix
Expiration Time Claim based on the unix time format.
Declaration
[JsonProperty("exp")]
public int ExpirationTimeUnix
Field Value
| Type | Description |
|---|---|
| int |
IssuedAtTimeUnix
Issued At Time Claim based on the unix time format.
Declaration
[JsonProperty("iat")]
public int IssuedAtTimeUnix
Field Value
| Type | Description |
|---|---|
| int |
NotBeforeTimeUnix
Not Before Claim based on the unix time format.
Declaration
[JsonProperty("nbf")]
public int NotBeforeTimeUnix
Field Value
| Type | Description |
|---|---|
| int |
Properties
ExpirationTime
The converted expiration time
Declaration
[JsonIgnore]
public DateTime ExpirationTime { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
IssuedAtTime
The converted issued at time
Declaration
[JsonIgnore]
public DateTime IssuedAtTime { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
NotBeforeTime
The converted not before time
Declaration
[JsonIgnore]
public DateTime NotBeforeTime { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |