timeCardEntry resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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
}
]
}