cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 524 B
TypeScript
import { ENatipaySaleChannel } from "../..";
import { EAmountMode, 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>);
}