cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 389 B
TypeScript
import { IFeeDetail } from '../../../transaction';
import { INatipayMercadoPago } from '../interfaces/i-mercado-pago';
export declare class NatipayMercadoPagoEntity implements INatipayMercadoPago {
amountPaid: number;
paymentId: string;
paymentStatus: string;
preferenceId: string;
feeDetails: IFeeDetail[];
constructor(data?: Partial<NatipayMercadoPagoEntity>);
}