@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
48 lines (47 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 { BasicTimeWindowStudio } from './basicTimeWindow';
import { TableCustomfieldsStudio } from './tableCustomfields';
/**
* Location fields for table.
*/
export interface TableLocationFieldsStudio {
[key: string]: any | any;
/**
* Essence type.
*/
essence_type?: TableLocationFieldsStudioEssenceTypeEnum;
/**
* 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;
/**
* Name, information field.
*/
name?: string;
/**
* Attributes.
*/
attributes?: string;
customfields?: TableCustomfieldsStudio;
}
export declare enum TableLocationFieldsStudioEssenceTypeEnum {
LOCATION = "LOCATION",
WORK_WINDOW = "WORK_WINDOW"
}