PayFanout API reference
    Preparing search index...

    Interface PayPalOrderLike

    interface PayPalOrderLike {
        create_time?: string;
        id: string;
        intent?: string;
        links?: PayPalLinkLike[];
        payment_source?: {
            card?: { brand?: string; last_digits?: string };
            paypal?: { account_id?: string; email_address?: string };
        };
        purchase_units?: {
            amount?: PayPalMoney;
            custom_id?: string;
            payments?: {
                authorizations?: PayPalAuthorizationLike[];
                captures?: PayPalCaptureLike[];
                refunds?: PayPalRefundLike[];
            };
            reference_id?: string;
            soft_descriptor?: string;
        }[];
        status?: string;
    }
    Index
    create_time?: string
    id: string
    intent?: string
    links?: PayPalLinkLike[]
    payment_source?: {
        card?: { brand?: string; last_digits?: string };
        paypal?: { account_id?: string; email_address?: string };
    }
    purchase_units?: {
        amount?: PayPalMoney;
        custom_id?: string;
        payments?: {
            authorizations?: PayPalAuthorizationLike[];
            captures?: PayPalCaptureLike[];
            refunds?: PayPalRefundLike[];
        };
        reference_id?: string;
        soft_descriptor?: string;
    }[]
    status?: string