Updated generated docs
diff --git a/docs/dyn/blogger.v2.posts.html b/docs/dyn/blogger.v2.posts.html
index 8b72531..7d05ffe 100644
--- a/docs/dyn/blogger.v2.posts.html
+++ b/docs/dyn/blogger.v2.posts.html
@@ -18,7 +18,39 @@
<br>
Args:<br>
postId: string, The ID of the post (required)<br>
- blogId: string, ID of the blog to fetch the post from. (required)</tt></dd></dl>
+ blogId: string, ID of the blog to fetch the post from. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "content": "A String", # The content of the Post. May contain HTML markup.<br>
+ "kind": "blogger#post", # The kind of this entity. Always blogger#post<br>
+ "author": { # The author of this Post.<br>
+ "url": "A String", # The URL of the Post creator's Profile page.<br>
+ "image": { # The Post author's avatar.<br>
+ "url": "A String", # The Post author's avatar URL.<br>
+ },<br>
+ "displayName": "A String", # The display name.<br>
+ "id": "A String", # The identifier of the Post creator.<br>
+ },<br>
+ "replies": { # The container of comments on this Post.<br>
+ "totalItems": "A String", # The count of comments on this post.<br>
+ "selfLink": "A String", # The URL of the comments on this post.<br>
+ },<br>
+ "labels": [ # The list of labels this Post was tagged with.<br>
+ "A String",<br>
+ ],<br>
+ "updated": "A String", # <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> date-time when this Post was last updated.<br>
+ "blog": { # Data about the blog containing this Post.<br>
+ "id": "A String", # The identifier of the Blog that contains this Post.<br>
+ },<br>
+ "url": "A String", # The URL where this Post is displayed.<br>
+ "published": "A String", # <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> date-time when this Post was published.<br>
+ "title": "A String", # The title of the Post.<br>
+ "id": "A String", # The identifier of this Post.<br>
+ "selfLink": "A String", # The API REST URL to fetch this resource from.<br>
+ }</tt></dd></dl>
<dl><dt><a name="Resource-list"><strong>list</strong></a> = method(self, **kwargs)</dt><dd><tt>Retrieves a list of posts, possibly filtered.<br>
<br>
@@ -27,7 +59,46 @@
pageToken: string, Continuation token if the request is paged.<br>
maxResults: integer, Maximum number of posts to fetch.<br>
fetchBodies: boolean, Whether the body content of posts is included.<br>
- blogId: string, ID of the blog to fetch posts from. (required)</tt></dd></dl>
+ blogId: string, ID of the blog to fetch posts from. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "nextPageToken": "A String", # Pagination token to fetch the next page, if one exists.<br>
+ "items": [ # The list of Posts for this Blog.<br>
+ {<br>
+ "content": "A String", # The content of the Post. May contain HTML markup.<br>
+ "kind": "blogger#post", # The kind of this entity. Always blogger#post<br>
+ "author": { # The author of this Post.<br>
+ "url": "A String", # The URL of the Post creator's Profile page.<br>
+ "image": { # The Post author's avatar.<br>
+ "url": "A String", # The Post author's avatar URL.<br>
+ },<br>
+ "displayName": "A String", # The display name.<br>
+ "id": "A String", # The identifier of the Post creator.<br>
+ },<br>
+ "replies": { # The container of comments on this Post.<br>
+ "totalItems": "A String", # The count of comments on this post.<br>
+ "selfLink": "A String", # The URL of the comments on this post.<br>
+ },<br>
+ "labels": [ # The list of labels this Post was tagged with.<br>
+ "A String",<br>
+ ],<br>
+ "updated": "A String", # <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> date-time when this Post was last updated.<br>
+ "blog": { # Data about the blog containing this Post.<br>
+ "id": "A String", # The identifier of the Blog that contains this Post.<br>
+ },<br>
+ "url": "A String", # The URL where this Post is displayed.<br>
+ "published": "A String", # <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> date-time when this Post was published.<br>
+ "title": "A String", # The title of the Post.<br>
+ "id": "A String", # The identifier of this Post.<br>
+ "selfLink": "A String", # The API REST URL to fetch this resource from.<br>
+ },<br>
+ ],<br>
+ "kind": "blogger#postList", # The kind of this entity. Always blogger#postList<br>
+ "prevPageToken": "A String", # Pagination token to fetch the previous page, if one exists.<br>
+ }</tt></dd></dl>
<dl><dt><a name="Resource-list_next"><strong>list_next</strong></a> = methodNext(self, previous_request, previous_response)</dt><dd><tt>Retrieves the next page of results.<br>
<br>