bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
18 lines (17 loc) • 577 B
TypeScript
import { PayoutRecipient } from './PayoutRecipient';
export interface PayoutRecipientsInterface {
guid?: string;
recipients: PayoutRecipient[] | [];
token?: string;
}
export declare class PayoutRecipients implements PayoutRecipientsInterface {
guid?: string;
recipients: PayoutRecipient[] | [];
token?: string;
/**
* Constructor, create an recipient-full request PayoutBatch object.
*
* @param recipients array array of JSON objects, with containing the following parameters.
*/
constructor(recipients: PayoutRecipient[]);
}