This repository was archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatasetmodels.pb.ts
61 lines (52 loc) · 1.75 KB
/
datasetmodels.pb.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Code generated by protoc-gen-js-fetch.
// DO NOT EDIT!
export type ColumnType = "STRING" | "INTEGER" | "REAL" | "DATE" | "DATE_TIME" | "TIME_OF_DAY" ;
export const ColumnType_STRING: ColumnType = "STRING";
export const ColumnType_INTEGER: ColumnType = "INTEGER";
export const ColumnType_REAL: ColumnType = "REAL";
export const ColumnType_DATE: ColumnType = "DATE";
export const ColumnType_DATE_TIME: ColumnType = "DATE_TIME";
export const ColumnType_TIME_OF_DAY: ColumnType = "TIME_OF_DAY";
export const ALL_ColumnType_VALUES: ColumnType[] = [ColumnType_STRING,ColumnType_INTEGER,ColumnType_REAL,ColumnType_DATE,ColumnType_DATE_TIME,ColumnType_TIME_OF_DAY];
export interface Column {
type?: ColumnType;
name?: string;
}
export const Column_type = "type";
export const Column_name = "name";
export interface TimeOfDay {
hours?: number;
minutes?: number;
seconds?: number;
milliseconds?: number;
}
export const TimeOfDay_hours = "hours";
export const TimeOfDay_minutes = "minutes";
export const TimeOfDay_seconds = "seconds";
export const TimeOfDay_milliseconds = "milliseconds";
export interface RowValue {
str?: string;
int?: number;
real?: number;
date?: string|number;
dateOfTime?: string|number;
timeOfDay?: TimeOfDay;
}
export const RowValue_str = "str";
export const RowValue_int = "int";
export const RowValue_real = "real";
export const RowValue_date = "date";
export const RowValue_dateOfTime = "date_of_time";
export const RowValue_timeOfDay = "time_of_day";
export interface Row {
values?: RowValue[];
}
export const Row_values = "values";
export interface DataSet {
label?: string;
columns?: Column[];
rows?: Row[];
}
export const DataSet_label = "label";
export const DataSet_columns = "columns";
export const DataSet_rows = "rows";