/**
 * 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 user membership subscription information.
 */
export type SubscribedMembershipUser = {
    /**
     * The user\'s member number in the membership plan.
     */
    membershipNo: number;
    /**
     * UNIX timestamp at which the user subscribed to the membership.
     */
    joinedTime: number;
    /**
     * Next payment date for membership plan. - Format: yyyy-MM-dd (e.g. 2024-02-08) - Timezone: UTC+9
     */
    nextBillingDate: string;
    /**
     * The period of time in months that the user has been subscribed to a membership plan. If a user previously canceled and then re-subscribed to the same membership plan, only the period after the re-subscription will be counted.
     */
    totalSubscriptionMonths: number;
};
//# sourceMappingURL=subscribedMembershipUser.d.ts.map