UNPKG

@line/bot-sdk

Version:
31 lines (26 loc) 706 B
/** * Webhook Type Definition * Webhook event definition of the LINE Messaging API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AttachedModuleContent } from "./models"; import { DetachedModuleContent } from "./models"; export type ModuleContent = | AttachedModuleContent // attached | DetachedModuleContent // detached | UnknownModuleContent; export type UnknownModuleContent = ModuleContentBase & { [key: string]: unknown; }; export type ModuleContentBase = { /** * Type */ type: string /**/; };