Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
class TokenListResponse
import { TokenListResponse } from "https://deno.land/x/authlete_deno@v1.2.10/src/dto/token_list_response.ts";

Response from Authlete /auth/token/get/list API.

Properties

optional
accessTokens: AccessToken[]

The list of access tokens that match the query conditions.

optional
client: Client

The client information associated with the value of clientIdentifier parameter in the original request. null is returned if the original request did not contain the parameter.

end: number

The end index (exclusive) for the result set of the query. It is the value contained in the original request (= the value of end parameter), or the default value used by Authlete server if the original request did not contain the parameter.

start: number

The start index (inclusive) for the result set of the query. It is the value contained in the original request (= the value of start parameter), or the default value (0) if the original request did not contain the parameter.

optional
subject: string

The value of subject parameter in the original request. null is returned if the original request did not contain the parameter.

totalCount: number

The total count of access tokens.