timeCardBreak resource type
Namespace: microsoft.graph
Represents a specific timeCard break.
Properties
Property | Type | Description |
---|---|---|
breakId | String | ID of the timeCardBreak. |
end | timeCardEvent | The start event of the timeCardBreak. |
notes | itemBody | Notes about the timeCardBreak. |
start | timeCardEvent | The start event of the timeCardBreak. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.timeCardBreak",
"breakId": "String",
"start": {
"@odata.type": "microsoft.graph.timeCardEvent"
},
"end": {
"@odata.type": "microsoft.graph.timeCardEvent"
},
"notes": {
"@odata.type": "microsoft.graph.itemBody"
}
}