UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

26 lines 773 B
import type { EntryMode } from "./entry-mode"; /** * Transaction Checkout Info * * Checkout-specific fields associated with a transaction. */ export type TransactionCheckoutInfo = { /** * Unique code of the registered merchant to whom the payment is made. */ merchant_code?: string; /** * Amount of the applicable VAT (out of the total transaction amount). */ vat_amount?: number; /** * Amount of the tip (out of the total transaction amount). */ tip_amount?: number; entry_mode?: EntryMode; /** * Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments. */ auth_code?: string; }; //# sourceMappingURL=transaction-checkout-info.d.ts.map