cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 334 B
TypeScript
import { IOrder } from '../../../order';
import { EPayioAppSlug } from '../../app';
import { IPayioOrderIndoor } from './i-order-indoor';
export interface IPayioOrder extends IOrder {
appId: string | null;
appSlug: EPayioAppSlug;
deviceId: string | null;
indoor: IPayioOrderIndoor | null;
resumeVersion: string;
}