itemActionSet 资源类型

命名空间:microsoft.graph

itemActionSet 资源提供有关在项上构成活动的操作的信息。

注意:项活动记录目前仅在 SharePoint 和 OneDrive for Business 上可用。

属性

以下操作当前可用。 由于将来可能会添加新操作,因此请确保应用可以处理包含未知操作的 itemActionSet

属性名称 类型 说明
访问 accessAction 访问了项。
注释 commentAction 向项目添加了注释。
create createAction 创建了项目。
delete deleteAction 删除了项目。
edit editAction 编辑了项目。
mention mentionAction 项目中提及用户。
move moveAction 移动了项目。
rename renameAction 重命名了项目。
restore restoreAction 恢复了项目。
share shareAction 共享了项目。
version versionAction 确定了项目的版本。

JSON 表示形式

{
  "access": {"@odata.type": "microsoft.graph.accessAction"},
  "comment": {"@odata.type": "microsoft.graph.commentAction"},
  "create": {"@odata.type": "microsoft.graph.createAction"},
  "delete": {"@odata.type": "microsoft.graph.deleteAction"},
  "edit": {"@odata.type": "microsoft.graph.editAction"},
  "mention": {"@odata.type": "microsoft.graph.mentionAction"},
  "move": {"@odata.type": "microsoft.graph.moveAction"},
  "rename": {"@odata.type": "microsoft.graph.renameAction"},
  "restore": {"@odata.type": "microsoft.graph.restoreAction"},
  "share": {"@odata.type": "microsoft.graph.shareAction"},
  "version": {"@odata.type": "microsoft.graph.versionAction"},
  
}