timeCardEntry resource type
Namespace: microsoft.graph
Represents a specific timeCard entry.
Properties
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. |
Relationships
None.
JSON representation
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"
}
]
}