juapp-freelancer-service-client
Version:
freelancer service client
24 lines (22 loc) • 417 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type TimesheetEntry = {
id?: string;
timesheet?: string;
date?: string;
checkIn?: string;
checkOut?: string;
/**
* pause in minutes
*/
pause?: number;
/**
* worked hours
*/
hours?: number;
comments?: string;
remote?: boolean;
createdAt?: string;
updatedAt?: string;
}