cecon-interfaces
Version:
Interfaces de Projetos Cecon
12 lines (11 loc) • 354 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;
tags: string[];
}