Edit

Share via


workbookCommentReply resource type

Namespace: microsoft.graph

Represents a reply to an Excel comment.

Methods

Method Return Type Description
List workbookCommentReply collection Get a list of comment replies.
Create workbookCommentReply Create a new comment reply.
Get workbookCommentReply Read the properties and relationships of a comment reply.

Properties

Property Type Description
content String The content of the reply that is the displayed to end-users.
contentType String The content type for the reply. Supported values are: plain, mention.
id String The unique identifier for the reply. Read-only.
mentions workbookCommentMention collection A collection that contains all the people mentioned within the reply. When contentType is plain, this property is an empty array. Read-only.
richContent String The rich content of the reply (for example, reply content with mentions, where the first mentioned entity has an ID attribute of 0 and the second has an ID attribute of 1). When contentType is plain, this property is empty. Read-only.

Relationships

Relationship Type Description
task workbookDocumentTask The task associated with the comment thread.

JSON representation

The following JSON representation shows the resource type.

{
  "content": "String",
  "contentType": "String",
  "id": "String (identifier)",
  "mentions": [{ "@odata.type": "microsoft.graph.workbookCommentMention" }],
  "richContent": "String"
}