@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
24 lines (23 loc) • 761 B
TypeScript
import type { Tenant } from "./Tenant";
export interface GTFS_Wheelchair_BoardingAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
condition?: string;
description?: string;
tenant: Tenant;
value: number;
}
export declare class GTFS_Wheelchair_Boarding extends Parse.Object<GTFS_Wheelchair_BoardingAttributes> {
static className: string;
constructor(data?: Partial<GTFS_Wheelchair_BoardingAttributes>);
get condition(): string | undefined;
set condition(value: string | undefined);
get description(): string | undefined;
set description(value: string | undefined);
get tenant(): Tenant;
set tenant(value: Tenant);
get value(): number;
set value(value: number);
}