mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
12 lines (11 loc) • 456 B
TypeScript
import { OrderEntity } from '../../../order';
import { EPayuioAppSlug } from '../../app';
import { IPayioOrder } from '../interfaces';
import { PayioOrderIndoorEntity } from './indoor.entity';
export declare class PayioOrderEntity extends OrderEntity implements IPayioOrder {
appId: string | null;
appSlug: EPayuioAppSlug;
deviceId: string | null;
indoor: PayioOrderIndoorEntity | null;
constructor(data?: Partial<PayioOrderEntity>);
}