cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 559 B
TypeScript
import { ENatipaySaleChannel } from '../..';
import { EAmountMode } from '../../../general';
import { EOperationType } from '../../../transaction';
import { EFeePayer } from '../../../transaction/enums/fee-payer.enum';
import { IFeeSaleChannel } from '../interfaces';
export declare class FeeSaleChannelEntity implements IFeeSaleChannel {
amount: number;
amountMode: EAmountMode;
feePayer: EFeePayer;
id: string;
operationType: EOperationType;
saleChannel: ENatipaySaleChannel;
constructor(data?: Partial<FeeSaleChannelEntity>);
}