/**
 * 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 short-lived channel access token
 */
export type IssueShortLivedChannelAccessTokenResponse = {
  /**
   * A short-lived channel access token. Valid for 30 days. Note: Channel access tokens cannot be refreshed.
   *
   * @see <a href="https://developers.line.biz/en/reference/messaging-api/#issue-shortlived-channel-access-token">accessToken Documentation</a>
   */
  access_token: string /**/;
  /**
   * Time until channel access token expires in seconds from time the token is issued.
   *
   * @see <a href="https://developers.line.biz/en/reference/messaging-api/#issue-shortlived-channel-access-token">expiresIn Documentation</a>
   */
  expires_in: number /**/;
  /**
   * Token type. The value is always `Bearer`.
   *
   * @see <a href="https://developers.line.biz/en/reference/messaging-api/#issue-shortlived-channel-access-token">tokenType Documentation</a>
   */
  token_type: string /* = 'Bearer'*/;
};
