/**
 * 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 { BasicTimeWindowStudio } from './basicTimeWindow';
import { TableCustomfieldsStudio } from './tableCustomfields';
/**
 * Performer and shift fields for table.
 */
export interface TablePerformerFieldsStudio {
    [key: string]: any | any;
    /**
     * Essence type.
     */
    essence_type?: TablePerformerFieldsStudioEssenceTypeEnum;
    /**
     * Essence key, unique identifier, may be `null`.
     */
    essence_key?: string | null;
    /**
     * Using essence for calculations.
     */
    enabled?: boolean;
    /**
     * A flag indicating whether changes to the entity have been made relative to the original data. `true` - means that the data is original and has not been changed.
     */
    readonly pristine?: boolean;
    working_time?: BasicTimeWindowStudio | null;
    availability_time?: BasicTimeWindowStudio | null;
    /**
     * Essence key, unique identifier, may be `null`.
     */
    trip_key?: string | null;
    /**
     * Name, information field.
     */
    trip_name?: string;
    /**
     * String table field.  For the parent entity, a comma-separated list of values is specified.
     */
    location_keys?: string | null;
    /**
     * String table field.  For the parent entity, a comma-separated list of values is specified.
     */
    performer_features?: string | null;
    /**
     * String table field.  For the parent entity, a comma-separated list of values is specified.
     */
    transport_restrictions?: string | null;
    /**
     * The number of trips in which the performer participates (for a shift - 0 or 1).
     */
    trips_count?: number;
    /**
     * Name, information field.
     */
    name?: string;
    /**
     * Attributes.
     */
    attributes?: string;
    customfields?: TableCustomfieldsStudio;
}
export declare enum TablePerformerFieldsStudioEssenceTypeEnum {
    PERFORMER = "PERFORMER",
    PERFORMER_SHIFT = "PERFORMER_SHIFT"
}
