forked from ddrilling/asb_cloud_front
18 lines
455 B
TypeScript
18 lines
455 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type TelemetryInfoDto = {
|
|
drillingStartDate?: string;
|
|
timeZoneId?: string | null;
|
|
timeZoneOffsetTotalHours?: number;
|
|
well?: string | null;
|
|
cluster?: string | null;
|
|
customer?: string | null;
|
|
deposit?: string | null;
|
|
hmiVersion?: string | null;
|
|
saubPlcVersion?: string | null;
|
|
spinPlcVersion?: string | null;
|
|
comment?: string | null;
|
|
}
|