akua-sdk
Version:
TypeScript SDK for Akua Acquiring Processor
11 lines (10 loc) • 309 B
TypeScript
import { TransactionStatus, TransactionType } from '../../enums';
/**
* DTO representing a capture transaction in the response
*/
export declare class CaptureTransactionDTO {
readonly amount: number;
readonly id: string;
readonly status: TransactionStatus;
readonly type: TransactionType;
}