bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
30 lines (29 loc) • 1.07 kB
TypeScript
export interface PayoutRecipientInterface {
email?: string | null;
label?: string | null;
notificationURL?: string | null;
status?: string;
id?: string;
shopperId?: string | null;
token?: string;
guid?: string;
}
export declare class PayoutRecipient implements PayoutRecipientInterface {
email?: string;
id?: string;
label?: string;
notificationURL?: string;
shopperId: string | null;
status?: string;
token?: string;
guid?: string;
/**
* Constructor, create a minimal Recipient object.
*
* @param email string Recipient email address to which the invite shall be sent.
* @param label string Recipient nickname assigned by the merchant (Optional).
* @param notificationURL string URL to which BitPay sends webhook notifications to inform the merchant about the
* status of a given recipient. HTTPS is mandatory (Optional).
*/
constructor(email: string | null, label: string | null, notificationURL: string | null);
}