Skip to content

JwtToken

Namespace: IntegrationTests.ApiClient

Represents a JWT token and its associated refresh token and metadata.

public class JwtToken

Inheritance ObjectJwtToken

Properties

CreatedDate

Gets or sets the creation date and time of the JWT token.

public DateTimeOffset CreatedDate { get; set; }

Property Value

DateTimeOffset

ExpiryDate

Gets or sets the expiry date and time of the JWT token.

public DateTimeOffset ExpiryDate { get; set; }

Property Value

DateTimeOffset

RefreshToken

Gets or sets the refresh token string.

public string RefreshToken { get; set; }

Property Value

String

Roles

Gets or sets the user roles associated with the JWT token.

public ICollection<String> Roles { get; set; }

Property Value

ICollection<String>

Token

Gets or sets the JWT access token string.

public string Token { get; set; }

Property Value

String

Constructors

JwtToken()

public JwtToken()