UNPKG

cecon-interfaces

Version:
12 lines (11 loc) 354 B
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[]; }