mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
10 lines (9 loc) • 309 B
TypeScript
import { IOrder } from '../../../order';
import { EPayuioAppSlug } from '../../app';
import { IPayioOrderIndoor } from './i-order-indoor';
export interface IPayioOrder extends IOrder {
indoor: IPayioOrderIndoor | null;
deviceId: string | null;
appId: string | null;
appSlug: EPayuioAppSlug;
}