UNPKG

@line/bot-sdk

Version:
27 lines (24 loc) 999 B
/** * LINE Messaging API * This document describes LINE Messaging 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. */ /** * Transcoding response * @see <a href="https://developers.line.biz/en/reference/messaging-api/#verify-video-or-audio-preparation-status">https://developers.line.biz/en/reference/messaging-api/#verify-video-or-audio-preparation-status</a> */ export type GetMessageContentTranscodingResponse = { /** * The preparation status. One of: `processing`: Preparing to get content. `succeeded`: Ready to get the content. You can get the content sent by users. `failed`: Failed to prepare to get the content. */ status: GetMessageContentTranscodingResponse.StatusEnum; }; export namespace GetMessageContentTranscodingResponse { export type StatusEnum = "processing" | "succeeded" | "failed"; }