Skip to content

Latest commit

 

History

History
64 lines (52 loc) · 1.78 KB

File metadata and controls

64 lines (52 loc) · 1.78 KB
title timeCardEvent resource type
description Represents a specific timecard event.
author akumar39
ms.date 07/25/2024
ms.localizationpriority medium
ms.subservice teams
doc_type resourcePageType

timeCardEvent resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a specific timeCard event.

Properties

Property Type Description
dateTime DateTimeOffset The time the entry is recorded.
isAtApprovedLocation Boolean Indicates whether this action happens at an approved location.
notes itemBody Notes about the timeCardEvent.
atApprovedLocation (deprecated) Boolean Indicates whether this action happens at an approved location. This property will be removed by November 20, 2027. Use isAtApprovedLocation instead. atApprovedLocation and isAtApprovedLocation always have the same value, so setting one automatically sets the value for the other. If both are included in the request with different values, the value for isAtApprovedLocation takes precedence.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.timeCardEvent",
  "dateTime": "String (timestamp)",
  "atApprovedLocation": "Boolean",
  "isAtApprovedLocation": "Boolean",
  "notes": {
    "@odata.type": "microsoft.graph.itemBody"
  }
}