blob: 242ee20f2d52b35f09164adcafa4fb7a980c3500 [file] [log] [blame]
Sai Cheemalapatidf613972016-10-21 13:59:49 -07001<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_v2.html">Blogger API v3</a> . <a href="blogger_v2.blogs.html">blogs</a></h1>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070076<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#get">get(blogId, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets a blog by id.</p>
83<p class="toc_element">
84 <code><a href="#list">list(userId, x__xgafv=None)</a></code></p>
85<p class="firstline">Lists blogs by user id, possibly filtered.</p>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070086<h3>Method Details</h3>
87<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code class="details" id="close">close()</code>
89 <pre>Close httplib2 connections.</pre>
90</div>
91
92<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code class="details" id="get">get(blogId, x__xgafv=None)</code>
94 <pre>Gets a blog by id.
Sai Cheemalapatidf613972016-10-21 13:59:49 -070095
96Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070097 blogId: string, A parameter (required)
98 x__xgafv: string, V1 error format.
99 Allowed values
100 1 - v1 error format
101 2 - v2 error format
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700102
103Returns:
104 An object of the form:
105
106 {
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800107 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
108 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
109 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
110 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
111 &quot;locale&quot;: { # The locale this Blog is set to.
112 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
113 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
114 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
115 },
116 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
117 &quot;pages&quot;: { # The container of pages in this blog.
118 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
119 &quot;totalItems&quot;: 42, # The count of pages in this blog.
120 },
121 &quot;posts&quot;: { # The container of posts in this blog.
122 &quot;items&quot;: [ # The List of Posts for this Blog.
123 {
124 &quot;author&quot;: { # The author of this Post.
125 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
126 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
127 &quot;image&quot;: { # The creator&#x27;s avatar.
128 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800129 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800130 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700131 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800132 &quot;blog&quot;: { # Data about the blog containing this Post.
133 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
134 },
135 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
136 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
137 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
138 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
139 &quot;images&quot;: [ # Display image for the Post.
140 {
141 &quot;url&quot;: &quot;A String&quot;,
142 },
143 ],
144 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
145 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
146 &quot;A String&quot;,
147 ],
148 &quot;location&quot;: { # The location for geotagged posts.
149 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
150 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
151 &quot;name&quot;: &quot;A String&quot;, # Location name.
152 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
153 },
154 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
155 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
156 &quot;replies&quot;: { # The container of comments on this Post.
157 &quot;items&quot;: [ # The List of Comments for this Post.
158 {
159 &quot;author&quot;: { # The author of this Comment.
160 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
161 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
162 &quot;image&quot;: { # The creator&#x27;s avatar.
163 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
164 },
165 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
166 },
167 &quot;blog&quot;: { # Data about the blog containing this comment.
168 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
169 },
170 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
171 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
172 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
173 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
174 },
175 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
176 &quot;post&quot;: { # Data about the post containing this comment.
177 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
178 },
179 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
180 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
181 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
182 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
183 },
184 ],
185 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
186 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
187 },
188 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
189 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
190 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
191 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
192 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
193 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
194 },
195 ],
196 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
197 &quot;totalItems&quot;: 42, # The count of posts in this blog.
198 },
199 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
200 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
201 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
202 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
203 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
204}</pre>
Dan O'Mearadd494642020-05-01 07:42:23 -0700205</div>
206
207<div class="method">
208 <code class="details" id="list">list(userId, x__xgafv=None)</code>
209 <pre>Lists blogs by user id, possibly filtered.
210
211Args:
212 userId: string, A parameter (required)
213 x__xgafv: string, V1 error format.
214 Allowed values
215 1 - v1 error format
216 2 - v2 error format
217
218Returns:
219 An object of the form:
220
221 {
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800222 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
223 {
224 &quot;blog&quot;: { # The Blog resource.
225 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
226 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
227 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
228 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
229 &quot;locale&quot;: { # The locale this Blog is set to.
230 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
231 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
232 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800233 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800234 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
235 &quot;pages&quot;: { # The container of pages in this blog.
236 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
237 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800238 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800239 &quot;posts&quot;: { # The container of posts in this blog.
240 &quot;items&quot;: [ # The List of Posts for this Blog.
241 {
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800242 &quot;author&quot;: { # The author of this Post.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800243 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
244 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800245 &quot;image&quot;: { # The creator&#x27;s avatar.
246 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
247 },
248 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800249 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800250 &quot;blog&quot;: { # Data about the blog containing this Post.
251 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
252 },
253 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
254 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
255 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
256 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800257 &quot;images&quot;: [ # Display image for the Post.
258 {
259 &quot;url&quot;: &quot;A String&quot;,
260 },
261 ],
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800262 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800263 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
264 &quot;A String&quot;,
265 ],
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800266 &quot;location&quot;: { # The location for geotagged posts.
267 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
268 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
269 &quot;name&quot;: &quot;A String&quot;, # Location name.
270 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
271 },
272 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
273 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
274 &quot;replies&quot;: { # The container of comments on this Post.
275 &quot;items&quot;: [ # The List of Comments for this Post.
276 {
277 &quot;author&quot;: { # The author of this Comment.
278 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
279 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
280 &quot;image&quot;: { # The creator&#x27;s avatar.
281 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
282 },
283 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
284 },
285 &quot;blog&quot;: { # Data about the blog containing this comment.
286 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
287 },
288 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
289 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
290 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
291 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
292 },
293 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
294 &quot;post&quot;: { # Data about the post containing this comment.
295 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
296 },
297 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
298 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
299 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
300 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
301 },
302 ],
303 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
304 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
305 },
306 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
307 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
308 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
309 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
310 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
311 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800312 },
313 ],
314 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
315 &quot;totalItems&quot;: 42, # The count of posts in this blog.
316 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800317 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800318 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800319 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800320 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
321 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800322 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800323 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
324 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
325 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
326 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
327 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
328 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
329 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
330 },
331 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
332 },
333 ],
334 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
335 {
336 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
337 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
338 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
339 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
340 &quot;locale&quot;: { # The locale this Blog is set to.
341 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
342 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
343 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
344 },
345 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
346 &quot;pages&quot;: { # The container of pages in this blog.
347 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
348 &quot;totalItems&quot;: 42, # The count of pages in this blog.
349 },
350 &quot;posts&quot;: { # The container of posts in this blog.
351 &quot;items&quot;: [ # The List of Posts for this Blog.
352 {
353 &quot;author&quot;: { # The author of this Post.
354 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
355 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
356 &quot;image&quot;: { # The creator&#x27;s avatar.
357 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
358 },
359 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
360 },
361 &quot;blog&quot;: { # Data about the blog containing this Post.
362 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
363 },
364 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
365 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
366 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
367 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
368 &quot;images&quot;: [ # Display image for the Post.
369 {
370 &quot;url&quot;: &quot;A String&quot;,
371 },
372 ],
373 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
374 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
375 &quot;A String&quot;,
376 ],
377 &quot;location&quot;: { # The location for geotagged posts.
378 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
379 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
380 &quot;name&quot;: &quot;A String&quot;, # Location name.
381 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
382 },
383 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
384 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
385 &quot;replies&quot;: { # The container of comments on this Post.
386 &quot;items&quot;: [ # The List of Comments for this Post.
387 {
388 &quot;author&quot;: { # The author of this Comment.
389 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
390 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
391 &quot;image&quot;: { # The creator&#x27;s avatar.
392 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
393 },
394 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
395 },
396 &quot;blog&quot;: { # Data about the blog containing this comment.
397 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
398 },
399 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
400 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
401 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
402 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
403 },
404 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
405 &quot;post&quot;: { # Data about the post containing this comment.
406 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
407 },
408 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
409 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
410 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
411 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
412 },
413 ],
414 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
415 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
416 },
417 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
418 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
419 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
420 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
421 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
422 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
423 },
424 ],
425 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
426 &quot;totalItems&quot;: 42, # The count of posts in this blog.
427 },
428 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
429 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
430 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
431 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
432 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
433 },
434 ],
435 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
436}</pre>
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700437</div>
438
439</body></html>