/**
 * 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 { WorkAndRestRulesStudio } from './workAndRestRules';
import { PerformerTariffStudio } from './performerTariff';
import { TimeWindowStudio } from './timeWindow';
import { AttributeStudio } from './attribute';
/**
 * Performer\'s shift that determines the availability of the resource for planning within its time window.
 */
export interface PerformerShiftStudio {
    [key: string]: any | any;
    /**
     * Shift key, unique identifier.
     */
    key: string;
    availability_time: TimeWindowStudio | null;
    working_time: TimeWindowStudio | null;
    /**
     * 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?: PerformerTariffStudio;
    work_and_rest_rules?: WorkAndRestRulesStudio | null;
    /**
     * Name, information field.
     */
    name?: string;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributeStudio>;
}
