bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
36 lines (35 loc) • 1.34 kB
TypeScript
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>;
}, "strip", z.ZodTypeAny, {
buyerName?: string | undefined;
buyerAddress1?: string | undefined;
buyerAddress2?: string | undefined;
buyerCity?: string | undefined;
buyerState?: string | undefined;
buyerZip?: string | undefined;
buyerCountry?: string | undefined;
buyerPhone?: string | undefined;
buyerNotify?: boolean | undefined;
buyerEmail?: string | undefined;
}, {
buyerName?: string | undefined;
buyerAddress1?: string | undefined;
buyerAddress2?: string | undefined;
buyerCity?: string | undefined;
buyerState?: string | undefined;
buyerZip?: string | undefined;
buyerCountry?: string | undefined;
buyerPhone?: string | undefined;
buyerNotify?: boolean | undefined;
buyerEmail?: string | undefined;
}>;