Skip to content

Latest commit

 

History

History
76 lines (64 loc) · 1.96 KB

File metadata and controls

76 lines (64 loc) · 1.96 KB
title timeCardEntry resource type
description Represents a specific timecard entry.
author akumar39
ms.localizationpriority medium
ms.subservice teams
doc_type resourcePageType
ms.date 07/25/2024

timeCardEntry resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a specific timeCard entry.

Properties

Property Type Description
clockInEvent timeCardEvent The clock-in event of the timeCard.
clockOutEvent timeCardEvent The clock-out event of the timeCard.
breaks timeCardBreak collection The list of breaks associated with the timeCard.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
   "clockInEvent": { "@odata.type":"microsoft.graph.timeCardEvent" },
   "clockOutEvent": { "@odata.type":"microsoft.graph.timeCardEvent" },
   "breaks":[
      {
         "breakId":"string",
         "notes":{
             "content": "string",
             "contentType": "text"
          },
         "start":{
            "dateTime":"String (timestamp)",
            "atApprovedLocation":true,
            "notes":{
                 "content": "string",
                 "contentType": "text"
            },
         },
         "end":null
      }
   ]
}