Skip to content

Commit

Permalink
add interface for TimesheetVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbullhorn committed Jul 29, 2024
1 parent 30637b7 commit e42a127
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15614,7 +15614,7 @@ export interface Timesheet {
jobOrder?: JobOrder;
lastModifiedAtUtc?: Date;
lastProcessedOn?: Date;
lastVersion?: number;
lastVersion?: TimesheetVersion;
modifyingUser?: CorporateUser;
paid?: number;
placement?: Placement;
Expand All @@ -15623,6 +15623,12 @@ export interface Timesheet {
timesheetEntryApprovalStatusLookup?: TimesheetEntryApprovalStatusLookup;
units?: boolean;
}
export interface TimesheetVersion {
versionHash?: string;
versionNumber?: number;
timesheetVersionId?: number;
timesheetId?: number;
}
export interface TimesheetActivity {
id?: number;
activityExternalId?: number;
Expand Down

0 comments on commit e42a127

Please sign in to comment.