UNPKG

1.05 kBTypeScriptView Raw
1/**
2 * LINE Messaging API
3 * This document describes LINE Messaging API.
4 *
5 * The version of the OpenAPI document: 0.0.1
6 *
7 *
8 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9 * https://openapi-generator.tech
10 * Do not edit the class manually.
11 */
12/**
13 * Object containing information about the membership plan.
14 */
15export type SubscribedMembershipPlan = {
16 /**
17 * Membership plan ID.
18 */
19 membershipId: number;
20 /**
21 * Membership plan name.
22 */
23 title: string;
24 /**
25 * Membership plan description.
26 */
27 description: string;
28 /**
29 * List of membership plan perks.
30 */
31 benefits: Array<string>;
32 /**
33 * Monthly fee for membership plan. (e.g. 1500.00)
34 */
35 price: number;
36 /**
37 * The currency of membership.price.
38 */
39 currency: SubscribedMembershipPlan.CurrencyEnum;
40};
41export declare namespace SubscribedMembershipPlan {
42 type CurrencyEnum = "JPY" | "TWD" | "THB";
43}
44//# sourceMappingURL=subscribedMembershipPlan.d.ts.map
\No newline at end of file