/** * Represents the payload returned in response to a client credentials grant request. * @export * @class TwoLeggedToken */ export declare class TwoLeggedToken { constructor(content: any); /** * The access token. * @type {string} * @memberof TwoLeggedToken */ 'access_token': string; /** * Will always be Bearer. * @type {string} * @memberof TwoLeggedToken */ 'token_type'?: string; /** * Access token expiration time (in seconds). * @type {number} * @memberof TwoLeggedToken */ 'expires_in': number; /** * Access token expiration time (in milliseconds). * @type {number} * @memberof TwoLeggedToken */ 'expires_at'?: number; }