@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
36 lines (35 loc) • 1.01 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GTFS_Wheelchair_Boarding = void 0;
class GTFS_Wheelchair_Boarding extends Parse.Object {
constructor(data) {
super("OD3_GTFS_Wheelchair_Boarding", data);
}
get condition() {
return super.get("condition");
}
set condition(value) {
super.set("condition", value);
}
get description() {
return super.get("description");
}
set description(value) {
super.set("description", value);
}
get tenant() {
return super.get("tenant");
}
set tenant(value) {
super.set("tenant", value);
}
get value() {
return super.get("value");
}
set value(value) {
super.set("value", value);
}
}
exports.GTFS_Wheelchair_Boarding = GTFS_Wheelchair_Boarding;
GTFS_Wheelchair_Boarding.className = "OD3_GTFS_Wheelchair_Boarding";
Parse.Object.registerSubclass("OD3_GTFS_Wheelchair_Boarding", GTFS_Wheelchair_Boarding);
;