bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
13 lines (12 loc) • 323 B
TypeScript
export interface InvoiceEventTokenInterface {
url: string | null;
token: string | null;
events?: string[];
actions?: string[];
}
export declare class InvoiceEventToken implements InvoiceEventTokenInterface {
url: string | null;
actions?: string[];
events?: string[];
token: string | null;
}