@golemio/pid
Version:
Golemio PID Module
59 lines (58 loc) • 1.61 kB
TypeScript
import { IStopCisDto } from "../interfaces/IStopCisDto";
import { Model, CreationOptional, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
export declare class StopCisDto extends Model<IStopCisDto> implements IStopCisDto {
static tableName: string;
alt_idos_name: string;
cis: number;
id: string;
jtsk_x: number;
jtsk_y: number;
lat: number;
lon: number;
platform: string;
wheelchair_access: string;
zone: string;
created_at: CreationOptional<Date>;
updated_at: CreationOptional<Date>;
stop_id?: string;
static attributeModel: ModelAttributes<StopCisDto>;
static jsonSchema: {
type: string;
properties: {
type: string;
properties: {
alt_idos_name: {
type: string;
};
cis: {
type: string;
};
id: {
type: string;
};
jtsk_x: {
type: string;
};
jtsk_y: {
type: string;
};
lat: {
type: string;
};
lon: {
type: string;
};
platform: {
type: string;
};
wheelchair_access: {
type: string;
};
zone: {
type: string;
};
};
required: string[];
};
};
}