@golemio/pid
Version:
Golemio PID Module
20 lines (19 loc) • 686 B
TypeScript
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { ITripDto } from "../interfaces/ITripDto";
export declare class TripDto extends Model<TripDto> implements ITripDto {
trip_id: string;
bikes_allowed: number;
block_id: string;
direction_id: number;
exceptional: number;
route_id: string;
service_id: string;
shape_id: string;
trip_headsign: string;
trip_operation_type: number;
trip_short_name: string;
wheelchair_accessible: number;
static attributeModel: ModelAttributes<TripDto>;
static jsonSchema: JSONSchemaType<ITripDto[]>;
}