/**
* 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 channel access token
*/
export type IssueChannelAccessTokenResponse = {
/**
* Channel access token.
*
* @see accessToken Documentation
*/
access_token: string;
/**
* Amount of time in seconds from issue to expiration of the channel access token
*
* @see expiresIn Documentation
*/
expires_in: number;
/**
* A token type.
*
* @see tokenType Documentation
*/
token_type: string;
/**
* Unique key ID for identifying the channel access token.
*
* @see keyId Documentation
*/
key_id: string;
};
//# sourceMappingURL=issueChannelAccessTokenResponse.d.ts.map