cecon-interfaces
Version:
Interfaces de Projetos Cecon
12 lines (11 loc) • 390 B
TypeScript
import { ENatipaySaleChannel } from '../..';
import { EAmountMode, EOperationType } from '../../../transaction/enums';
import { EFeePayer } from '../../../transaction/enums/fee-payer.enum';
export interface IFeeSaleChannel {
amount: number;
amountMode: EAmountMode;
feePayer: EFeePayer;
id: string;
operationType: EOperationType;
saleChannel: ENatipaySaleChannel;
}