@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
42 lines (41 loc) • 1.33 kB
TypeScript
import type { Tenant } from "./Tenant";
export interface GTFS_CalendarAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
end_date: Date;
friday?: boolean;
monday?: boolean;
saturday?: boolean;
start_date: Date;
sunday?: boolean;
tenant: Tenant;
thursday?: boolean;
tuesday?: boolean;
wednesday?: boolean;
}
export declare class GTFS_Calendar extends Parse.Object<GTFS_CalendarAttributes> {
static className: string;
constructor(data?: Partial<GTFS_CalendarAttributes>);
get end_date(): Date;
set end_date(value: Date);
get friday(): boolean | undefined;
set friday(value: boolean | undefined);
get monday(): boolean | undefined;
set monday(value: boolean | undefined);
get saturday(): boolean | undefined;
set saturday(value: boolean | undefined);
get start_date(): Date;
set start_date(value: Date);
get sunday(): boolean | undefined;
set sunday(value: boolean | undefined);
get tenant(): Tenant;
set tenant(value: Tenant);
get thursday(): boolean | undefined;
set thursday(value: boolean | undefined);
get tuesday(): boolean | undefined;
set tuesday(value: boolean | undefined);
get wednesday(): boolean | undefined;
set wednesday(value: boolean | undefined);
}