bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
26 lines (25 loc) • 548 B
TypeScript
export interface BuyerInterface {
email?: string;
name?: string;
address1?: string;
address2?: string;
locality?: string;
region?: string;
postalCode?: string;
country?: string;
phone?: string;
notify?: boolean;
}
export declare class Buyer implements BuyerInterface {
email?: string;
address1?: string;
address2?: string;
country?: string;
locality?: string;
name?: string;
notify?: boolean;
phone?: string;
postalCode?: string;
region?: string;
constructor();
}