Interface PayPalNodeParameters

Source
interface PayPalNodeParameters {
    additionalFields?: {
        emailMessage?: string;
        emailSubject?: string;
        note?: string;
    };
    itemsJson?: string;
    itemsUi?: {
        itemsValues: {
            amount: string;
            currency?: | "AUD"
            | "BRL"
            | "CAD"
            | "CZK"
            | "DKK"
            | "EUR"
            | "USD";
            note?: string;
            receiverValue: string;
            recipientType?: "email"
            | "phone"
            | "paypalId";
            recipientWallet?: "paypal" | "venmo";
            senderItemId?: string;
        }[];
    };
    jsonParameters?: boolean;
    limit?: number;
    operation?: "create"
    | "get"
    | "cancel";
    payoutBatchId?: string;
    payoutItemId?: string;
    resource?: "payout" | "payoutItem";
    returnAll?: boolean;
    senderBatchId?: string;
}

Properties§

Source§

readonly additionalFields?: {
    emailMessage?: string;
    emailSubject?: string;
    note?: string;
}

Default: {}

Source§

readonly itemsJson?: string

An array of individual payout items Type options: {"alwaysOpenEditWindow":true}

Source§

readonly itemsUi?: {
    itemsValues: {
        amount: string;
        currency?:
            | "AUD"
            | "BRL"
            | "CAD"
            | "CZK"
            | "DKK"
            | "EUR"
            | "USD";
        note?: string;
        receiverValue: string;
        recipientType?: "email"
        | "phone"
        | "paypalId";
        recipientWallet?: "paypal" | "venmo";
        senderItemId?: string;
    }[];
}

Default: {} Type options: {"multipleValues":true}

Source§

readonly jsonParameters?: boolean

Source§

readonly limit?: number

Max number of results to return Default: 100 Type options: {"maxValue":1000,"minValue":1}

Source§

readonly operation?: "create" | "get" | "cancel"

Default: "create"

Source§

readonly payoutBatchId?: string

The ID of the payout for which to show details

Source§

readonly payoutItemId?: string

The ID of the payout item for which to show details

Source§

readonly resource?: "payout" | "payoutItem"

Default: "payout"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly senderBatchId?: string

A sender-specified ID number. Tracks the payout in an accounting system.