Type alias TimeSheet

TimeSheet: {
    assignee: User;
    companyId: string;
    description: string;
    dueDate: string;
    endTime: string;
    id: string;
    invoice: Record<string, any>;
    project: Project;
    projectId: string;
    startTime: string;
    status: string;
}

Type declaration

  • assignee: User

    User assigned to this timesheet entry

  • companyId: string

    ID of the company this timesheets exists in

  • description: string

    Short description of what was done

  • dueDate: string

    Date on which this task is due

  • endTime: string

    End Datetime of the time entry

  • id: string

    The ID of the time entry

  • invoice: Record<string, any>
  • project: Project

    Details of the project associated with this timesheet entry

  • projectId: string

    ID of the project associated with this timesheet

  • startTime: string

    Start Datetime of the time entry

  • status: string

    Status of the timesheet entry (or task)