PayFanout API reference
    Preparing search index...

    Interface StripePriceLike

    Recurring price attached to a subscription item. unit_amount is null for tiered/custom pricing.

    interface StripePriceLike {
        currency?: string;
        id: string;
        recurring?:
            | { interval?: string; interval_count?: number; usage_type?: string }
            | null;
        unit_amount?: number | null;
    }
    Index
    currency?: string

    Lowercase ISO 4217.

    id: string
    recurring?:
        | { interval?: string; interval_count?: number; usage_type?: string }
        | null

    usage_type "metered" bills by reported usage — no fixed per-period amount exists.

    unit_amount?: number | null

    Integer minor units per unit; null when billing_scheme is not per_unit.