/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { TimeWindowUniversal } from './timeWindow'; import { PerformerTariffUniversal } from './performerTariff'; import { AttributeUniversal } from './attribute'; import { WorkAndRestRulesUniversal } from './workAndRestRules'; /** * Performer\'s shift that determines the availability of the resource for planning within its time window. */ export interface PerformerShiftUniversal { [key: string]: any | any; /** * Shift key, unique identifier. */ key: string; /** * Time shift window when the performer can perform work at locations and drive between locations. */ availability_time: TimeWindowUniversal; /** * Working time window, when the performer can perform work at locations, must be inside the time window. */ working_time: TimeWindowUniversal; /** * Start location key. If not specified, the trip starts from the first order location. */ start_location_key?: string | null; /** * Finish location key. If not specified, the trip finishes on the last order location. */ finish_location_key?: string | null; /** * Limit of the number of unique locations in one trip. If not specified or null, number of locations is not limited. */ max_locations?: number | null; /** * Limit of the number of stops in one trip. If not specified or null, number of stops is not limited. */ max_stops?: number | null; tariff?: PerformerTariffUniversal; work_and_rest_rules?: WorkAndRestRulesUniversal | null; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array; }