@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
45 lines (44 loc) • 1.29 kB
TypeScript
/**
* 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 { TransportLimitsStudio } from './transportLimits';
import { TransportShiftStudio } from './transportShift';
import { AttributeStudio } from './attribute';
import { TransportTypeStudio } from './transportType';
import { TransportCompatibilitiesStudio } from './transportCompatibilities';
import { BoxStudio } from './box';
/**
* Transport. Used by performer for relocating and cargo transfer.
*/
export interface TransportStudio {
[key: string]: any | any;
/**
* Transport key, unique identifier.
*/
key: string;
/**
* List of working shifts of transport.
*/
shifts: Array<TransportShiftStudio>;
transport_type?: TransportTypeStudio;
/**
* A list of transport boxes that can accommodate the cargo.
*/
boxes?: Array<BoxStudio>;
compatibilities?: TransportCompatibilitiesStudio | null;
limits?: TransportLimitsStudio | null;
/**
* Name, information field.
*/
name?: string;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeStudio>;
}