UNPKG

@line/bot-sdk

Version:
46 lines (43 loc) 981 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. */ /** * Object containing information about the membership plan. */ export type SubscribedMembershipPlan = { /** * Membership plan ID. */ membershipId: number /**/; /** * Membership plan name. */ title: string /**/; /** * Membership plan description. */ description: string /**/; /** * List of membership plan perks. */ benefits: Array<string> /**/; /** * Monthly fee for membership plan. (e.g. 1500.00) */ price: number /**/; /** * The currency of membership.price. */ currency: SubscribedMembershipPlan.CurrencyEnum /**/; }; export namespace SubscribedMembershipPlan { export type CurrencyEnum = "JPY" | "TWD" | "THB"; }