Type alias CreateTimesheetPayLoad

CreateTimesheetPayLoad: {
    assigneeId?: string;
    description?: string;
    dueDate?: string;
    endTime?: string;
    priority?: priority;
    startTime?: string;
    status: CreateTimesheetPayLoad.status;
    tagIds?: string[];
    taskName: string;
}

Type declaration

  • Optional assigneeId?: string

    ID of the user this task has been assigned to

  • Optional description?: string

    Description of the timesheet

  • Optional dueDate?: string

    The date this task is due by

  • Optional endTime?: string

    End date of the timesheet

  • Optional priority?: priority

    Priority of the task

  • Optional startTime?: string

    Start date of the timesheet

  • status: CreateTimesheetPayLoad.status

    Status of the task being created

  • Optional tagIds?: string[]

    Array of tag IDs to associate with this timesheet

  • taskName: string

    Name of the task