import { DomainObject } from "./domain-object"; import { ExpenseJournalStatus } from "./all.enum"; import { ExpenseReceipt } from "./expense-receipt"; import { Location } from "./location"; import { ProjectLocation } from "./project-location"; import { Employee } from "./employee"; import { Project } from "./project"; export declare class ExpenseJournal extends DomainObject { JournalId?: string | undefined; Status?: ExpenseJournalStatus | undefined; Purpose?: string | undefined; Note?: string | undefined; Start?: Date | undefined; End?: Date | undefined; LocationId?: string | undefined; Location: Location | undefined; TripLocationId?: string | undefined; TripLocation: ProjectLocation | undefined; EmployeeId?: string | undefined; Employee: Employee | undefined; ProjectId?: string | undefined; Project: Project | undefined; Expenses: ExpenseReceipt[] | undefined; } //# sourceMappingURL=expense-journal.d.ts.map