interface BillingPlan {
    billingAmount: string;
    currency?: string;
    from: string;
    interval: "DAY" | "WEEK" | "MONTH" | "YEAR";
    intervalFrequency: number;
}

Properties

billingAmount: string
currency?: string
from: string
interval: "DAY" | "WEEK" | "MONTH" | "YEAR"

Interval of the subscription.

intervalFrequency: number