blob: 7f27aa54200a514efd6d7c9ec176974c5b56cc95 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
Dan O'Mearadd494642020-05-01 07:42:23 -070075<h1><a href="blogger_v3.html">Blogger API v3</a> . <a href="blogger_v3.comments.html">comments</a></h1>
John Asmuth614db982014-04-24 15:46:26 -040076<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#approve">approve(blogId, postId, commentId, x__xgafv=None)</a></code></p>
79<p class="firstline">Marks a comment as not spam by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -040080<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#delete">delete(blogId, postId, commentId, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a comment by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -040083<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070084 <code><a href="#get">get(blogId, postId, commentId, view=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070085<p class="firstline">Gets a comment by id.</p>
John Asmuth614db982014-04-24 15:46:26 -040086<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070087 <code><a href="#list">list(blogId, postId, view=None, status=None, pageToken=None, endDate=None, maxResults=None, startDate=None, fetchBodies=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070088<p class="firstline">Lists comments.</p>
John Asmuth614db982014-04-24 15:46:26 -040089<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070090 <code><a href="#listByBlog">listByBlog(blogId, startDate=None, pageToken=None, status=None, endDate=None, maxResults=None, fetchBodies=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070091<p class="firstline">Lists comments by blog.</p>
John Asmuth614db982014-04-24 15:46:26 -040092<p class="toc_element">
93 <code><a href="#listByBlog_next">listByBlog_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
97<p class="firstline">Retrieves the next page of results.</p>
98<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070099 <code><a href="#markAsSpam">markAsSpam(blogId, postId, commentId, x__xgafv=None)</a></code></p>
100<p class="firstline">Marks a comment as spam by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -0400101<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 <code><a href="#removeContent">removeContent(blogId, postId, commentId, x__xgafv=None)</a></code></p>
103<p class="firstline">Removes the content of a comment by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -0400104<h3>Method Details</h3>
105<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700106 <code class="details" id="approve">approve(blogId, postId, commentId, x__xgafv=None)</code>
107 <pre>Marks a comment as not spam by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400108
109Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 blogId: string, A parameter (required)
111 postId: string, A parameter (required)
112 commentId: string, A parameter (required)
113 x__xgafv: string, V1 error format.
114 Allowed values
115 1 - v1 error format
116 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400117
118Returns:
119 An object of the form:
120
121 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700122 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
123 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700124 &quot;post&quot;: { # Data about the post containing this comment.
125 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
126 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700127 &quot;blog&quot;: { # Data about the blog containing this comment.
128 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
129 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700130 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700131 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
132 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700133 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700134 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
135 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
136 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700137 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700138 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700139 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700140 &quot;image&quot;: { # The creator&#x27;s avatar.
141 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400142 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
144 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400145 },
John Asmuth614db982014-04-24 15:46:26 -0400146 }</pre>
147</div>
148
149<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700150 <code class="details" id="delete">delete(blogId, postId, commentId, x__xgafv=None)</code>
151 <pre>Deletes a comment by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400152
153Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700154 blogId: string, A parameter (required)
155 postId: string, A parameter (required)
156 commentId: string, A parameter (required)
157 x__xgafv: string, V1 error format.
158 Allowed values
159 1 - v1 error format
160 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400161</pre>
162</div>
163
164<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700165 <code class="details" id="get">get(blogId, postId, commentId, view=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700166 <pre>Gets a comment by id.
John Asmuth614db982014-04-24 15:46:26 -0400167
168Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700169 blogId: string, A parameter (required)
170 postId: string, A parameter (required)
171 commentId: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700172 view: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700173 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400174 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700175 1 - v1 error format
176 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400177
178Returns:
179 An object of the form:
180
181 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700182 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
183 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700184 &quot;post&quot;: { # Data about the post containing this comment.
185 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
186 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700187 &quot;blog&quot;: { # Data about the blog containing this comment.
188 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
189 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700190 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700191 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
192 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700193 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
195 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
196 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700197 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700198 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700199 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700200 &quot;image&quot;: { # The creator&#x27;s avatar.
201 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400202 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700203 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
204 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400205 },
John Asmuth614db982014-04-24 15:46:26 -0400206 }</pre>
207</div>
208
209<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700210 <code class="details" id="list">list(blogId, postId, view=None, status=None, pageToken=None, endDate=None, maxResults=None, startDate=None, fetchBodies=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700211 <pre>Lists comments.
John Asmuth614db982014-04-24 15:46:26 -0400212
213Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700214 blogId: string, A parameter (required)
215 postId: string, A parameter (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 view: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700217 status: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 pageToken: string, A parameter
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700219 endDate: string, A parameter
220 maxResults: integer, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700221 startDate: string, A parameter
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700222 fetchBodies: boolean, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400224 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700225 1 - v1 error format
226 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400227
228Returns:
229 An object of the form:
230
231 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700232 &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the next page, if one exists.
Bu Sun Kim65020912020-05-20 12:08:20 -0700233 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#commentList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700234 &quot;etag&quot;: &quot;A String&quot;, # Etag of the response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700235 &quot;items&quot;: [ # The List of Comments for a Post.
John Asmuth614db982014-04-24 15:46:26 -0400236 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700237 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
238 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;post&quot;: { # Data about the post containing this comment.
240 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400241 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700242 &quot;blog&quot;: { # Data about the blog containing this comment.
243 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
244 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700245 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
246 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
247 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
248 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
249 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
250 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
251 },
252 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
253 &quot;author&quot;: { # The author of this Comment.
254 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
255 &quot;image&quot;: { # The creator&#x27;s avatar.
256 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
257 },
258 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
259 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
260 },
John Asmuth614db982014-04-24 15:46:26 -0400261 },
262 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700263 &quot;prevPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the previous page, if one exists.
John Asmuth614db982014-04-24 15:46:26 -0400264 }</pre>
265</div>
266
267<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700268 <code class="details" id="listByBlog">listByBlog(blogId, startDate=None, pageToken=None, status=None, endDate=None, maxResults=None, fetchBodies=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700269 <pre>Lists comments by blog.
John Asmuth614db982014-04-24 15:46:26 -0400270
271Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700272 blogId: string, A parameter (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700273 startDate: string, A parameter
274 pageToken: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700275 status: string, A parameter (repeated)
Dan O'Mearadd494642020-05-01 07:42:23 -0700276 endDate: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700277 maxResults: integer, A parameter
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700278 fetchBodies: boolean, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700279 x__xgafv: string, V1 error format.
Craig Citroe633be12015-03-02 13:40:36 -0800280 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700281 1 - v1 error format
282 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400283
284Returns:
285 An object of the form:
286
287 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700288 &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the next page, if one exists.
Bu Sun Kim65020912020-05-20 12:08:20 -0700289 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#commentList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700290 &quot;etag&quot;: &quot;A String&quot;, # Etag of the response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700291 &quot;items&quot;: [ # The List of Comments for a Post.
John Asmuth614db982014-04-24 15:46:26 -0400292 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700293 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
294 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700295 &quot;post&quot;: { # Data about the post containing this comment.
296 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400297 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700298 &quot;blog&quot;: { # Data about the blog containing this comment.
299 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
300 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700301 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
302 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
303 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
304 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
305 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
306 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
307 },
308 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
309 &quot;author&quot;: { # The author of this Comment.
310 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
311 &quot;image&quot;: { # The creator&#x27;s avatar.
312 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
313 },
314 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
315 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
316 },
John Asmuth614db982014-04-24 15:46:26 -0400317 },
318 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700319 &quot;prevPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the previous page, if one exists.
John Asmuth614db982014-04-24 15:46:26 -0400320 }</pre>
321</div>
322
323<div class="method">
324 <code class="details" id="listByBlog_next">listByBlog_next(previous_request, previous_response)</code>
325 <pre>Retrieves the next page of results.
326
327Args:
328 previous_request: The request for the previous page. (required)
329 previous_response: The response from the request for the previous page. (required)
330
331Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700332 A request object that you can call &#x27;execute()&#x27; on to request the next
John Asmuth614db982014-04-24 15:46:26 -0400333 page. Returns None if there are no more items in the collection.
334 </pre>
335</div>
336
337<div class="method">
338 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
339 <pre>Retrieves the next page of results.
340
341Args:
342 previous_request: The request for the previous page. (required)
343 previous_response: The response from the request for the previous page. (required)
344
345Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700346 A request object that you can call &#x27;execute()&#x27; on to request the next
John Asmuth614db982014-04-24 15:46:26 -0400347 page. Returns None if there are no more items in the collection.
348 </pre>
349</div>
350
351<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700352 <code class="details" id="markAsSpam">markAsSpam(blogId, postId, commentId, x__xgafv=None)</code>
353 <pre>Marks a comment as spam by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400354
355Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700356 blogId: string, A parameter (required)
357 postId: string, A parameter (required)
358 commentId: string, A parameter (required)
359 x__xgafv: string, V1 error format.
360 Allowed values
361 1 - v1 error format
362 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400363
364Returns:
365 An object of the form:
366
367 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700368 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
369 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700370 &quot;post&quot;: { # Data about the post containing this comment.
371 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
372 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700373 &quot;blog&quot;: { # Data about the blog containing this comment.
374 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
375 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700376 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700377 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
378 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700379 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700380 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
381 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
382 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700383 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700384 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700385 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700386 &quot;image&quot;: { # The creator&#x27;s avatar.
387 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400388 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700389 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
390 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400391 },
John Asmuth614db982014-04-24 15:46:26 -0400392 }</pre>
393</div>
394
395<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700396 <code class="details" id="removeContent">removeContent(blogId, postId, commentId, x__xgafv=None)</code>
397 <pre>Removes the content of a comment by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400398
399Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700400 blogId: string, A parameter (required)
401 postId: string, A parameter (required)
402 commentId: string, A parameter (required)
403 x__xgafv: string, V1 error format.
404 Allowed values
405 1 - v1 error format
406 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400407
408Returns:
409 An object of the form:
410
411 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700412 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
413 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700414 &quot;post&quot;: { # Data about the post containing this comment.
415 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
416 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700417 &quot;blog&quot;: { # Data about the blog containing this comment.
418 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
419 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700420 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700421 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
422 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700423 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700424 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
425 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
426 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700427 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700428 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700429 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700430 &quot;image&quot;: { # The creator&#x27;s avatar.
431 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400432 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700433 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
434 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400435 },
John Asmuth614db982014-04-24 15:46:26 -0400436 }</pre>
437</div>
438
439</body></html>