cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 386 B
TypeScript
import { EOrderPaymentMethod } from '../enum/order-payment-method.enum';
import { EPaymentType } from '../enum/payment-type.enum';
export declare class IPaymentMethod {
active: boolean;
createdAt: number;
id: string;
index: number;
method: EOrderPaymentMethod;
name: string;
type: EPaymentType;
updatedAt: number;
constructor(obj: IPaymentMethod);
}