btcpay-greenfield-node-client
Version:
## Installation
16 lines (13 loc) • 403 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { WebhookInvoiceEvent } from './WebhookInvoiceEvent';
/**
* Callback sent if the `type` is `InvoiceReceivedPayment`
*/
export type WebhookInvoiceReceivedPaymentEvent = (WebhookInvoiceEvent & {
/**
* Whether this payment has been sent after expiration of the invoice
*/
afterExpiration?: boolean,
});