UNPKG

twilio

Version:
98 lines (97 loc) 2.97 kB
import { inspect, InspectOptions } from "util"; import V2 from "../V2"; /** * Options to pass to create a TokenInstance */ export interface TokenListInstanceCreateOptions { /** Optional Account SID to perform on behalf of requests. */ accountSid?: string; /** Grant type is a credential representing resource owner\\\'s authorization which can be used by client to obtain access token. */ grantType?: string; /** A 34 character string that uniquely identifies this OAuth App. */ clientId?: string; /** The credential for confidential OAuth App. */ clientSecret?: string; /** JWT token related to the authorization code grant type. */ code?: string; /** The redirect uri */ redirectUri?: string; /** The targeted audience uri */ audience?: string; /** JWT token related to refresh access token. */ refreshToken?: string; /** The scope of token */ scope?: string; } export interface TokenSolution { } export interface TokenListInstance { _version: V2; _solution: TokenSolution; _uri: string; /** * Create a TokenInstance * * @param callback - Callback to handle processed record * * @returns Resolves to processed TokenInstance */ create(callback?: (error: Error | null, item?: TokenInstance) => any): Promise<TokenInstance>; /** * Create a TokenInstance * * @param params - Parameter for request * @param callback - Callback to handle processed record * * @returns Resolves to processed TokenInstance */ create(params: TokenListInstanceCreateOptions, callback?: (error: Error | null, item?: TokenInstance) => any): Promise<TokenInstance>; /** * Provide a user-friendly representation */ toJSON(): any; [inspect.custom](_depth: any, options: InspectOptions): any; } export declare function TokenListInstance(version: V2): TokenListInstance; interface TokenResource { access_token: string; refresh_token: string; id_token: string; token_type: string; expires_in: number; } export declare class TokenInstance { protected _version: V2; constructor(_version: V2, payload: TokenResource); /** * Token which carries the necessary information to access a Twilio resource directly. */ accessToken: string; /** * Token which carries the information necessary to get a new access token. */ refreshToken: string; /** * Token which carries the information necessary of user profile. */ idToken: string; /** * Token type */ tokenType: string; expiresIn: number; /** * Provide a user-friendly representation * * @returns Object */ toJSON(): { accessToken: string; refreshToken: string; idToken: string; tokenType: string; expiresIn: number; }; [inspect.custom](_depth: any, options: InspectOptions): string; } export {};