INPUT_OBJECT

SiteDiaryTimesheetUpdate

Timesheet record

link GraphQL Schema definition

  • input SiteDiaryTimesheetUpdate {
  • # Unique timesheet ID.
  • id: Int
  • # The work item code associated with this timesheet
  • work_items: [TimesheetTimesheetWorkItemUpdate]
  • # The allocation this timesheet was attached to.
  • allocation: IdObject
  • # The allowances associated with this timesheet.
  • allowances: [IdObject]
  • # The assets associated with this timesheet.
  • assets: [IdObject]
  • # The break time in minutes.
  • break_time: Int
  • # The datetime the timesheet log ends.
  • end_datetime: String
  • # The signature image url attached to the timesheet.
  • signature_image: NonEmptyString
  • # The user's name of the signature attached.
  • signature_name: String
  • # The datetime the timesheet log starts.
  • start_datetime: String
  • # The task associated with this timesheet.
  • task: IdObject
  • # The user the timesheet belongs to.
  • user: IdObject
  • # (DEPRECATED) The time the timesheet log starts.
  • start_time: String
  • # (DEPRECATED) The time the timesheet log ends.
  • end_time: String
  • }