asb_cloud_front/src/services/api/models/TelemetryInfoDto.ts

18 lines
455 B
TypeScript
Raw Normal View History

2021-04-09 17:59:35 +05:00
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type TelemetryInfoDto = {
drillingStartDate?: string;
2021-04-23 10:45:56 +05:00
timeZoneId?: string | null;
timeZoneOffsetTotalHours?: number;
well?: string | null;
2021-04-09 17:59:35 +05:00
cluster?: string | null;
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
}