UNPKG

bitpay-sdk

Version:

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

23 lines (22 loc) 950 B
import { z } from 'zod'; export declare const refundWebhookSchema: z.ZodObject<{ amount: z.ZodNullable<z.ZodNumber>; buyerPaysRefundFee: z.ZodNullable<z.ZodBoolean>; currency: z.ZodNullable<z.ZodString>; id: z.ZodNullable<z.ZodString>; immediate: z.ZodNullable<z.ZodBoolean>; invoice: z.ZodNullable<z.ZodString>; lastRefundNotification: z.ZodNullable<z.ZodString>; refundFee: z.ZodNullable<z.ZodNumber>; requestDate: z.ZodNullable<z.ZodString>; status: z.ZodNullable<z.ZodString>; supportRequest: z.ZodNullable<z.ZodString>; reference: z.ZodNullable<z.ZodString>; guid: z.ZodNullable<z.ZodString>; refundAddress: z.ZodNullable<z.ZodString>; type: z.ZodNullable<z.ZodString>; txid: z.ZodNullable<z.ZodString>; transactionCurrency: z.ZodNullable<z.ZodString>; transactionAmount: z.ZodNullable<z.ZodNumber>; transactionRefundFee: z.ZodNullable<z.ZodNumber>; }, z.core.$strip>;