Skip to content

TokenResponse

Namespace: LoadTests.Infrastructure

Response model for authentication token

public class TokenResponse

Inheritance ObjectTokenResponse

Properties

AccessToken

JWT access token for authentication

public string AccessToken { get; set; }

Property Value

String

ExpiresIn

Token expiration time in seconds

public int ExpiresIn { get; set; }

Property Value

Int32

RefreshToken

Refresh token for renewing access tokens

public string RefreshToken { get; set; }

Property Value

String

Constructors

TokenResponse()

public TokenResponse()