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§
§§§§§§§§§
readonly additional Fields?: { ... }§
readonly items Json?: stringAn array of individual payout items Type options: {"alwaysOpenEditWindow":true}
readonly items Ui?: { ... }Default: {} Type options: {"multipleValues":true}
readonly json Parameters?: boolean§readonly limit?: numberMax number of results to return Default: 100 Type options: {"maxValue":1000,"minValue":1}
readonly operation?: "create" | "get" | "cancel"Default: "create"
readonly payout Batch Id?: stringThe ID of the payout for which to show details
readonly payout Item Id?: stringThe ID of the payout item for which to show details
readonly resource?: "payout" | "payoutItem"Default: "payout"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly sender Batch Id?: stringA sender-specified ID number. Tracks the payout in an accounting system.
Default: {}