request_token_response.d.ts 367 B

12345678
  1. import { RequestTokenResponse as RequestTokenResponseInterface } from "../interfaces/request_token_response";
  2. import { BaseModel } from "./base_model";
  3. export declare class RequestTokenResponse extends BaseModel implements RequestTokenResponseInterface {
  4. access_token: string;
  5. refresh_token: string;
  6. expires_in: string | number;
  7. token_type: string;
  8. }