bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
15 lines (14 loc) • 423 B
TypeScript
import { z } from 'zod';
export declare const payoutGroupFailedInterfaceSchema: z.ZodObject<{
errMessage: z.ZodString;
payoutId: z.ZodOptional<z.ZodString>;
payee: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
errMessage: string;
payoutId?: string | undefined;
payee?: string | undefined;
}, {
errMessage: string;
payoutId?: string | undefined;
payee?: string | undefined;
}>;