bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
12 lines (11 loc) • 452 B
TypeScript
import { PayoutInterface } from './Payout';
import { PayoutGroupFailedInterface } from './PayoutGroupFailed';
export interface PayoutGroupInterface {
payouts: PayoutInterface[];
failed: PayoutGroupFailedInterface[];
}
export declare class PayoutGroup implements PayoutGroupInterface {
payouts: PayoutInterface[];
failed: PayoutGroupFailedInterface[];
constructor(payouts: PayoutInterface[], failed: PayoutGroupFailedInterface[]);
}