UNPKG

cecon-interfaces

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