f5-conx-core
Version:
F5 SDK for JavaScript with Typescript type definitions
22 lines (21 loc) • 468 B
TypeScript
export type Ntoken = {
/**
* token body
*/
token: string;
tokenType: 'Bearer';
/**
* time to live (TTL) in seconds 3600= 1hr
*/
expiresIn: number;
refreshToken: string;
refreshExpiresIn: number;
refreshEndDate: string;
};
export declare const mtokenExample: Ntoken;
export type NCMtoken = {
access_token: string;
refresh_token: string;
user_id: string;
};
export declare const NCMtokenExample: NCMtoken;