bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
30 lines (29 loc) • 1.11 kB
TypeScript
import { z } from 'zod';
export declare const refundParamsSchema: z.ZodObject<{
requesterType: z.ZodOptional<z.ZodString>;
requesterEmail: z.ZodOptional<z.ZodString>;
amount: z.ZodOptional<z.ZodNumber>;
currency: z.ZodOptional<z.ZodString>;
email: z.ZodOptional<z.ZodString>;
purchaserNotifyEmail: z.ZodOptional<z.ZodString>;
refundAddress: z.ZodOptional<z.ZodString>;
supportRequestEid: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
currency?: string | undefined;
email?: string | undefined;
amount?: number | undefined;
requesterType?: string | undefined;
requesterEmail?: string | undefined;
purchaserNotifyEmail?: string | undefined;
refundAddress?: string | undefined;
supportRequestEid?: string | undefined;
}, {
currency?: string | undefined;
email?: string | undefined;
amount?: number | undefined;
requesterType?: string | undefined;
requesterEmail?: string | undefined;
purchaserNotifyEmail?: string | undefined;
refundAddress?: string | undefined;
supportRequestEid?: string | undefined;
}>;