UNPKG

cecon-interfaces

Version:
14 lines (13 loc) 524 B
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>); }