UNPKG

bitpay-sdk

Version:

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

26 lines (25 loc) 642 B
export interface BuyerFieldsInterface { buyerName?: string; buyerAddress1?: string; buyerAddress2?: string; buyerCity?: string; buyerState?: string; buyerZip?: string; buyerCountry?: string; buyerPhone?: string; buyerNotify?: boolean; buyerEmail?: string; } export declare class BuyerFields implements BuyerFieldsInterface { buyerName?: string; buyerAddress1?: string; buyerAddress2?: string; buyerCity?: string; buyerState?: string; buyerZip?: string; buyerCountry?: string; buyerPhone?: string; buyerNotify?: boolean; buyerEmail?: string; constructor(); }