UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 672 B
import type { Tenant } from "./Tenant"; export interface GTFS_Location_TypeAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; description: string; name: string; tenant: Tenant; value: number; } export declare class GTFS_Location_Type extends Parse.Object<GTFS_Location_TypeAttributes> { static className: string; constructor(data?: Partial<GTFS_Location_TypeAttributes>); get description(): string; set description(value: string); get name(): string; set name(value: string); get tenant(): Tenant; set tenant(value: Tenant); get value(): number; set value(value: number); }