simpay-typescript-api
Version:
SimPay.pl API wrapper
22 lines (21 loc) • 472 B
TypeScript
interface TransactionRequest {
amount: number;
currency?: string;
description?: string;
control?: string;
customer?: object;
antifraud?: object;
billing?: object;
shipping?: object;
cart?: object[];
returns?: {
success: string;
failure: string;
};
directChannel?: string;
channels?: string[];
channelTypes?: object;
referer?: string;
signature?: string;
}
export type { TransactionRequest };