@golemio/pid
Version:
Golemio PID Module
21 lines (20 loc) • 825 B
TypeScript
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IStopTimesComputedDto, IStopTimesDto } from "../interfaces/IStopTimesDto";
export declare class StopTimesDto extends Model<IStopTimesDto & IStopTimesComputedDto> implements IStopTimesDto {
trip_id: string;
stop_sequence: number;
arrival_time: string;
arrival_time_seconds: number;
departure_time: string;
departure_time_seconds: number;
drop_off_type: string;
pickup_type: string;
shape_dist_traveled: number;
stop_headsign: string;
stop_id: string;
timepoint: number;
computed_dwell_time_seconds: number;
static attributeModel: ModelAttributes<StopTimesDto>;
static jsonSchema: JSONSchemaType<IStopTimesDto[]>;
}