cecon-interfaces
Version:
Interfaces de Projetos Cecon
9 lines (8 loc) • 312 B
TypeScript
import { IFeeDetail } from '../interfaces';
export declare class FeeDetailEntity implements IFeeDetail {
amount: number;
feePayer: 'collector' | string;
type: 'mercadopago_fee' | 'plattform_fee' | 'firebank_fee' | string;
description?: string;
constructor(data?: Partial<FeeDetailEntity>);
}