itemActivityStat resource type
Namespace: microsoft.graph
The itemActivityStat resource provides information about activities that took place within an interval of time.
Properties
Property | Type | Description |
---|---|---|
access | itemActionStat | Statistics about the access actions in this interval. Read-only. |
create | itemActionStat | Statistics about the create actions in this interval. Read-only. |
delete | itemActionStat | Statistics about the delete actions in this interval. Read-only. |
edit | itemActionStat | Statistics about the edit actions in this interval. Read-only. |
endDateTime | DateTimeOffset | When the interval ends. Read-only. |
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. |
move | itemActionStat | Statistics about the move actions in this interval. Read-only. |
startDateTime | DateTimeOffset | When the interval starts. Read-only. |
Relationships
Relationship name | 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"}
}