UNPKG

wfm-mobile-core

Version:

WFM Mobile Core

13 lines (12 loc) 377 B
import { HalResource } from 'hal-types'; import { IDateInterval } from './IDateInterval'; import { IPosition } from './IPosition'; import { IUserEmployee } from './IUserEmployee'; export interface IEmployeePosition extends HalResource { dateInterval: IDateInterval; id: number; _embedded?: { employee?: IUserEmployee; position?: IPosition; }; }