Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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.
The itemActivityStat resource provides information about activities that took place within an interval of time.
Properties
| Property | Type | Description |
|---|---|---|
| incompleteData | incompleteData | Indicates that the statistics in this interval are based on incomplete data. Read-only. |
| isTrending | Boolean | Indicates whether the item is "trending." Read-only. |
| startDateTime | DateTimeOffset | When the interval starts. Read-only. |
| endDateTime | DateTimeOffset | When the interval ends. Read-only. |
| create | itemActionStat | Statistics about the create actions in this interval. Read-only. |
| edit | itemActionStat | Statistics about the edit actions in this interval. Read-only. |
| delete | itemActionStat | Statistics about the delete actions in this interval. Read-only. |
| move | itemActionStat | Statistics about the move actions in this interval. Read-only. |
| access | itemActionStat | Statistics about the access actions in this interval. Read-only. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| activities | itemActivity collection | Exposes the itemActivities represented in this itemActivityStat resource. |
JSON representation
{
"activities": [{"@odata.type": "microsoft.graph.itemActivity"}],
"incompleteData": {"@odata.type": "microsoft.graph.incompleteData"},
"isTrending": true,
"startDateTime": "String (timestamp)",
"endDateTime": "String (timestamp)",
"create": {"@odata.type": "microsoft.graph.itemActionStat"},
"delete": {"@odata.type": "microsoft.graph.itemActionStat"},
"edit": {"@odata.type": "microsoft.graph.itemActionStat"},
"move": {"@odata.type": "microsoft.graph.itemActionStat"},
"access": {"@odata.type": "microsoft.graph.itemActionStat"}
}