2021-04-09 17:59:35 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
|
|
|
export type TelemetryInfoDto = {
|
2021-05-12 17:53:35 +05:00
|
|
|
drillingStartDate?: string;
|
2021-04-23 10:45:56 +05:00
|
|
|
timeZoneId?: string | null;
|
|
|
|
timeZoneOffsetTotalHours?: number;
|
2021-05-12 17:53:35 +05:00
|
|
|
well?: string | null;
|
2021-04-09 17:59:35 +05:00
|
|
|
cluster?: string | null;
|
2021-05-12 17:53:35 +05:00
|
|
|
customer?: string | null;
|
2021-04-09 17:59:35 +05:00
|
|
|
deposit?: string | null;
|
2021-04-23 10:45:56 +05:00
|
|
|
hmiVersion?: string | null;
|
2021-10-13 18:04:47 +05:00
|
|
|
saubPlcVersion?: string | null;
|
|
|
|
spinPlcVersion?: string | null;
|
2021-04-23 10:45:56 +05:00
|
|
|
comment?: string | null;
|
2021-10-12 10:39:56 +05:00
|
|
|
}
|