@golemio/pid
Version:
Golemio PID Module
21 lines (20 loc) • 862 B
TypeScript
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { TCPEventEnum } from "../../../const";
import { ICommonRunsMessagesModel } from "./interfaces/ICommonRunsMessagesModel";
export declare class CommonRunsMessagesModel extends Model<CommonRunsMessagesModel> implements ICommonRunsMessagesModel {
static TABLE_NAME: string;
id?: number;
runs_id?: string;
lat: number;
lng: number;
actual_stop_asw_id: string;
actual_stop_timestamp_real: Date;
actual_stop_timestamp_scheduled?: Date;
last_stop_asw_id: string;
packet_number: string;
msg_timestamp: Date;
events: TCPEventEnum;
static attributeModel: ModelAttributes<CommonRunsMessagesModel>;
static arrayJsonSchema: JSONSchemaType<ICommonRunsMessagesModel[]>;
}