UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

18 lines (17 loc) 582 B
import { DisputeResponse } from "../dispute"; import { PaymentResponse } from "../payment"; import { PayoutResponse } from "../payout"; import { RefundResponse } from "../refund"; import { TokenResponse } from "../token"; export interface WebhooksEvent { apiVersion?: string | null; id?: string | null; created?: string | null; merchantId?: string | null; type?: string | null; payment?: PaymentResponse | null; refund?: RefundResponse | null; payout?: PayoutResponse | null; token?: TokenResponse | null; dispute?: DisputeResponse | null; }