/** * Channel Access Token API * This document describes Channel Access Token API. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Issued stateless channel access token */ export type IssueStatelessChannelAccessTokenResponse = { /** * A stateless channel access token. The token is an opaque string which means its format is an implementation detail and the consumer of this token should never try to use the data parsed from the token. * * @see accessToken Documentation */ accessToken: string; /** * Duration in seconds after which the issued access token expires * * @see expiresIn Documentation */ expiresIn: number; /** * Token type. The value is always `Bearer`. * * @see tokenType Documentation */ tokenType: string; }; //# sourceMappingURL=issueStatelessChannelAccessTokenResponse.d.ts.map