| title | timeCardEntry resource type |
|---|---|
| description | Represents a specific timecard entry. |
| author | lemike |
| ms.date | 01/17/2025 |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | resourcePageType |
Namespace: microsoft.graph
Represents a specific timeCard entry.
| Property | Type | Description |
|---|---|---|
| breaks | timeCardBreak collection | The clock-in event of the timeCard. |
| clockInEvent | timeCardEvent | The clock-out event of the timeCard. |
| clockOutEvent | timeCardEvent | The list of breaks associated with the timeCard. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.timeCardEntry",
"clockInEvent": {
"@odata.type": "microsoft.graph.timeCardEvent"
},
"clockOutEvent": {
"@odata.type": "microsoft.graph.timeCardEvent"
},
"breaks": [
{
"@odata.type": "microsoft.graph.timeCardBreak"
}
]
}