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 items Json?: string
readonly items Json?: string
An array of individual payout items Type options: {"alwaysOpenEditWindow":true}
Source§readonly items Ui?: {
itemsValues: {
amount: string;
currency?:
| "AUD"
| "BRL"
| "CAD"
| "CZK"
| "DKK"
| "EUR"
| "USD";
note?: string;
receiverValue: string;
recipientType?: "email"
| "phone"
| "paypalId";
recipientWallet?: "paypal" | "venmo";
senderItemId?: string;
}[];
}
readonly items Ui?: {
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}
Default: {}