Interface CreateSubscriptionReq

interface CreateSubscriptionReq {
    customerId: string;
    metadata?: string;
    payer: string;
    planId: string;
    startFrom?: string | number | Date;
}

Properties

customerId: string
metadata?: string
payer: string
planId: string
startFrom?: string | number | Date