mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
13 lines (12 loc) • 352 B
TypeScript
import { IOrderV3 } from '../../mobyo/mobyo-api/interfaces/i-order-v3';
import { IOrder } from '../../order';
import { EFcmSkill } from '../enums/skill.enum';
export interface IFcmDataOrder {
callback: string;
companyId: string;
containerId: string;
skill: EFcmSkill;
pos: string;
table: string;
order: IOrderV3 | IOrder;
}