-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.interfaces.commentreplydata.yml
121 lines (121 loc) · 4.48 KB
/
excel.interfaces.commentreplydata.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
### YamlMime:TSType
name: Excel.Interfaces.CommentReplyData
uid: 'excel!Excel.Interfaces.CommentReplyData:interface'
package: excel!
fullName: Excel.Interfaces.CommentReplyData
summary: An interface describing the data returned by calling `commentReply.toJSON()`<!-- -->.
remarks: ''
isPreview: false
isDeprecated: false
type: interface
properties:
- name: authorEmail
uid: 'excel!Excel.Interfaces.CommentReplyData#authorEmail:member'
package: excel!
fullName: authorEmail
summary: Gets the email of the comment reply's author.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'authorEmail?: string;'
return:
type: string
- name: authorName
uid: 'excel!Excel.Interfaces.CommentReplyData#authorName:member'
package: excel!
fullName: authorName
summary: Gets the name of the comment reply's author.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'authorName?: string;'
return:
type: string
- name: content
uid: 'excel!Excel.Interfaces.CommentReplyData#content:member'
package: excel!
fullName: content
summary: The comment reply's content. The string is plain text.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'content?: string;'
return:
type: string
- name: contentType
uid: 'excel!Excel.Interfaces.CommentReplyData#contentType:member'
package: excel!
fullName: contentType
summary: The content type of the reply.
remarks: '\[ [API set: ExcelApi 1.12](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'contentType?: Excel.ContentType | "Plain" | "Mention";'
return:
type: '<xref uid="excel!Excel.ContentType:enum" /> | "Plain" | "Mention"'
- name: creationDate
uid: 'excel!Excel.Interfaces.CommentReplyData#creationDate:member'
package: excel!
fullName: creationDate
summary: Gets the creation time of the comment reply.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'creationDate?: Date;'
return:
type: Date
- name: id
uid: 'excel!Excel.Interfaces.CommentReplyData#id:member'
package: excel!
fullName: id
summary: Specifies the comment reply identifier.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'id?: string;'
return:
type: string
- name: mentions
uid: 'excel!Excel.Interfaces.CommentReplyData#mentions:member'
package: excel!
fullName: mentions
summary: 'The entities (e.g., people) that are mentioned in comments.'
remarks: '\[ [API set: ExcelApi 1.11](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'mentions?: Excel.CommentMention[];'
return:
type: '<xref uid="excel!Excel.CommentMention:interface" />[]'
- name: resolved
uid: 'excel!Excel.Interfaces.CommentReplyData#resolved:member'
package: excel!
fullName: resolved
summary: The comment reply status. A value of `true` means the reply is in the resolved state.
remarks: '\[ [API set: ExcelApi 1.11](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'resolved?: boolean;'
return:
type: boolean
- name: richContent
uid: 'excel!Excel.Interfaces.CommentReplyData#richContent:member'
package: excel!
fullName: richContent
summary: >-
The rich comment content (e.g., mentions in comments). This string is not meant to be displayed to end-users. Your
add-in should only use this to parse rich comment content.
remarks: '\[ [API set: ExcelApi 1.11](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'richContent?: string;'
return:
type: string