PayFanout API reference
    Preparing search index...

    Interface PaysafePlanLike

    Plan as the Payment Scheduler API (subscriptionsplans/v1) reports it. amount is integer minor units, exactly like the Payments API; the cadence lives in billingCycle (frequency DAILY/MONTHLY/YEARLY, interval 1-365, numberOfCycles 0 = infinite).

    interface PaysafePlanLike {
        amount?: number;
        billingCycle?: {
            frequency?: string;
            interval?: number;
            numberOfCycles?: number;
        };
        currencyCode?: string;
        id?: string;
        name?: string;
        status?: string;
    }
    Index
    amount?: number
    billingCycle?: {
        frequency?: string;
        interval?: number;
        numberOfCycles?: number;
    }
    currencyCode?: string
    id?: string
    name?: string
    status?: string