/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * Additional notification for completed payout * @export * @interface ReceiptNotification */ export interface ReceiptNotification { /** * Valid email address to send the payout receipt * @type {Array} * @memberof ReceiptNotification */ emailTo?: Array | null; /** * Valid email address to cc the payout receipt * @type {Array} * @memberof ReceiptNotification */ emailCc?: Array | null; /** * Valid email address to bcc the payout receipt * @type {Array} * @memberof ReceiptNotification */ emailBcc?: Array | null; } /** * Check if a given object implements the ReceiptNotification interface. */ export declare function instanceOfReceiptNotification(value: object): boolean; export declare function ReceiptNotificationFromJSON(json: any): ReceiptNotification; export declare function ReceiptNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReceiptNotification; export declare function ReceiptNotificationToJSON(value?: ReceiptNotification | null): any;