/**
 * 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
 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#issue-channel-access-token-v2-1">https://developers.line.biz/en/reference/messaging-api/#issue-channel-access-token-v2-1</a>
 */
export type IssueChannelAccessTokenResponse = {
    /**
     * Channel access token.
     */
    access_token: string;
    /**
     * Amount of time in seconds from issue to expiration of the channel access token
     */
    expires_in: number;
    /**
     * A token type.
     * @default 'Bearer'
     */
    token_type: string;
    /**
     * Unique key ID for identifying the channel access token.
     */
    key_id: string;
};
//# sourceMappingURL=issueChannelAccessTokenResponse.d.ts.map