bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
27 lines (26 loc) • 994 B
TypeScript
import { z } from 'zod';
export declare const invoiceBuyerProvidedInfoSchema: z.ZodObject<{
name: z.ZodOptional<z.ZodString>;
phoneNumber: z.ZodOptional<z.ZodString>;
sms: z.ZodOptional<z.ZodString>;
smsVerified: z.ZodOptional<z.ZodBoolean>;
selectedTransactionCurrency: z.ZodOptional<z.ZodString>;
emailAddress: z.ZodOptional<z.ZodString>;
selectedWallet: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
name?: string | undefined;
phoneNumber?: string | undefined;
sms?: string | undefined;
smsVerified?: boolean | undefined;
selectedTransactionCurrency?: string | undefined;
emailAddress?: string | undefined;
selectedWallet?: string | undefined;
}, {
name?: string | undefined;
phoneNumber?: string | undefined;
sms?: string | undefined;
smsVerified?: boolean | undefined;
selectedTransactionCurrency?: string | undefined;
emailAddress?: string | undefined;
selectedWallet?: string | undefined;
}>;