scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
21 lines (20 loc) • 656 B
TypeScript
import { EPaymentChannel } from '../enums/payment-channel.enum';
import { EPaymentMode } from '../enums/payment-mode.enum';
import { EPaymentType } from '../enums/payment-type.enum';
import { IPaymentMethodOption } from '../interfaces';
export declare class PaymentMethodOptionEntity implements IPaymentMethodOption {
active: boolean;
channel: EPaymentChannel;
createdAt: Date;
fee: number;
id: string;
index: number;
maxAmount: number;
minAmount: number;
mode: EPaymentMode;
name: string;
token: string;
type: EPaymentType;
updatedAt: Date;
constructor(data?: Partial<PaymentMethodOptionEntity>);
}