authoredNote 资源类型

命名空间:microsoft.graph

表示作者撰写的注释的属性。

继承自 实体

属性

属性 类型 说明
author identity 有关注释作者的标识信息。
content itemBody 便笺的内容。
createdDateTime DateTimeOffset 实体的创建日期和时间。 时间戳类型表示采用 ISO 8601 格式的日期和时间信息,始终采用 UTC 时区。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z

关系

无。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.authoredNote",
  "author": {
    "@odata.type": "microsoft.graph.identity"
  },
  "content": {
    "@odata.type": "microsoft.graph.itemBody",
    "content": "String",
    "contentType": "String"
  },
  "createdDateTime": "String (timestamp)"
}