docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class BaseJwt

    Represents a json web token

    Inheritance
    object
    BaseJwt
    IdToken
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)