UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

25 lines 695 B
import type { ReceiptMerchantData } from "./receipt-merchant-data"; import type { ReceiptTransaction } from "./receipt-transaction"; /** * Receipt * * Receipt details for a transaction. */ export type Receipt = { transaction_data?: ReceiptTransaction; merchant_data?: ReceiptMerchantData; /** * EMV-specific metadata returned for card-present payments. */ emv_data?: Record<string, unknown>; /** * Acquirer-specific metadata related to the card authorization. */ acquirer_data?: { tid?: string; authorization_code?: string; return_code?: string; local_time?: string; }; }; //# sourceMappingURL=receipt.d.cts.map