scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
19 lines (18 loc) • 501 B
TypeScript
import { EPaymentChannel } from '../enums/payment-channel.enum';
import { EPaymentMode } from '../enums/payment-mode.enum';
import { EPaymentType } from '../enums/payment-type.enum';
export interface 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;
}