UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

40 lines (39 loc) 1.14 kB
/** * VRt.Studio [ST] * * The version of the OpenAPI document: 7.18.2755 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { PerformerCompatibilitiesStudio } from './performerCompatibilities'; import { PerformerLimitsStudio } from './performerLimits'; import { AttributeStudio } from './attribute'; import { TransportTypeStudio } from './transportType'; import { PerformerShiftStudio } from './performerShift'; /** * Performer. Fulfills orders using transport. */ export interface PerformerStudio { [key: string]: any | any; /** * Performer\'s key, unique identifier. */ key: string; /** * List of working shifts of performer. */ shifts: Array<PerformerShiftStudio>; own_transport_type?: TransportTypeStudio; compatibilities?: PerformerCompatibilitiesStudio | null; limits?: PerformerLimitsStudio | null; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeStudio>; }