UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

14 lines (13 loc) 567 B
import { z } from 'zod'; export declare const invoiceWebhookBuyerFieldsInterfaceSchema: z.ZodObject<{ buyerName: z.ZodOptional<z.ZodString>; buyerAddress1: z.ZodOptional<z.ZodString>; buyerAddress2: z.ZodOptional<z.ZodString>; buyerCity: z.ZodOptional<z.ZodString>; buyerState: z.ZodOptional<z.ZodString>; buyerZip: z.ZodOptional<z.ZodString>; buyerCountry: z.ZodOptional<z.ZodString>; buyerPhone: z.ZodOptional<z.ZodString>; buyerNotify: z.ZodOptional<z.ZodBoolean>; buyerEmail: z.ZodOptional<z.ZodString>; }, z.core.$strip>;