mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
11 lines (10 loc) • 366 B
TypeScript
import { EIndoorMode } from '../../../order/enums';
import { IPayioOrderIndoor } from '../interfaces/i-order-indoor';
export declare class PayioOrderIndoorEntity implements IPayioOrderIndoor {
deliveryDateTime: Date;
mode: EIndoorMode;
preferential: boolean;
tab: string;
table: string;
constructor(data?: Partial<PayioOrderIndoorEntity>);
}