Update docs (#291)

diff --git a/docs/dyn/drive_v3.revisions.html b/docs/dyn/drive_v3.revisions.html
index 798e329..2c86689 100644
--- a/docs/dyn/drive_v3.revisions.html
+++ b/docs/dyn/drive_v3.revisions.html
@@ -84,9 +84,12 @@
   <code><a href="#get_media">get_media(fileId, revisionId, acknowledgeAbuse=None)</a></code></p>
 <p class="firstline">Gets a revision's metadata or content by ID.</p>
 <p class="toc_element">
-  <code><a href="#list">list(fileId)</a></code></p>
+  <code><a href="#list">list(fileId, pageToken=None, pageSize=None)</a></code></p>
 <p class="firstline">Lists a file's revisions.</p>
 <p class="toc_element">
+  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
+<p class="firstline">Retrieves the next page of results.</p>
+<p class="toc_element">
   <code><a href="#update">update(fileId, revisionId, body)</a></code></p>
 <p class="firstline">Updates a revision with patch semantics.</p>
 <h3>Method Details</h3>
@@ -114,11 +117,11 @@
 
     { # The metadata for a revision to a file.
     "mimeType": "A String", # The MIME type of the revision.
-    "kind": "drive#revision", # This is always drive#revision.
+    "kind": "drive#revision", # Identifies what kind of resource this is. Value: the fixed string "drive#revision".
     "modifiedTime": "A String", # The last time the revision was modified (RFC 3339 date-time).
     "lastModifyingUser": { # Information about a Drive user. # The last user to modify this revision.
       "me": True or False, # Whether this user is the requesting user.
-      "kind": "drive#user", # This is always drive#user.
+      "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
       "displayName": "A String", # A plain text displayable name for this user.
       "permissionId": "A String", # The user's ID as visible in Permission resources.
       "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.
@@ -152,25 +155,28 @@
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(fileId)</code>
+    <code class="details" id="list">list(fileId, pageToken=None, pageSize=None)</code>
   <pre>Lists a file's revisions.
 
 Args:
   fileId: string, The ID of the file. (required)
+  pageToken: string, The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.
+  pageSize: integer, The maximum number of revisions to return per page.
 
 Returns:
   An object of the form:
 
     { # A list of revisions of a file.
-    "kind": "drive#revisionList", # This is always drive#revisionList.
+    "nextPageToken": "A String", # The page token for the next page of revisions. This will be absent if the end of the revisions list has been reached.
+    "kind": "drive#revisionList", # Identifies what kind of resource this is. Value: the fixed string "drive#revisionList".
     "revisions": [ # The full list of revisions.
       { # The metadata for a revision to a file.
         "mimeType": "A String", # The MIME type of the revision.
-        "kind": "drive#revision", # This is always drive#revision.
+        "kind": "drive#revision", # Identifies what kind of resource this is. Value: the fixed string "drive#revision".
         "modifiedTime": "A String", # The last time the revision was modified (RFC 3339 date-time).
         "lastModifyingUser": { # Information about a Drive user. # The last user to modify this revision.
           "me": True or False, # Whether this user is the requesting user.
-          "kind": "drive#user", # This is always drive#user.
+          "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
           "displayName": "A String", # A plain text displayable name for this user.
           "permissionId": "A String", # The user's ID as visible in Permission resources.
           "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.
@@ -191,6 +197,20 @@
 </div>
 
 <div class="method">
+    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
+  <pre>Retrieves the next page of results.
+
+Args:
+  previous_request: The request for the previous page. (required)
+  previous_response: The response from the request for the previous page. (required)
+
+Returns:
+  A request object that you can call 'execute()' on to request the next
+  page. Returns None if there are no more items in the collection.
+    </pre>
+</div>
+
+<div class="method">
     <code class="details" id="update">update(fileId, revisionId, body)</code>
   <pre>Updates a revision with patch semantics.
 
@@ -202,11 +222,11 @@
 
 { # The metadata for a revision to a file.
   "mimeType": "A String", # The MIME type of the revision.
-  "kind": "drive#revision", # This is always drive#revision.
+  "kind": "drive#revision", # Identifies what kind of resource this is. Value: the fixed string "drive#revision".
   "modifiedTime": "A String", # The last time the revision was modified (RFC 3339 date-time).
   "lastModifyingUser": { # Information about a Drive user. # The last user to modify this revision.
     "me": True or False, # Whether this user is the requesting user.
-    "kind": "drive#user", # This is always drive#user.
+    "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
     "displayName": "A String", # A plain text displayable name for this user.
     "permissionId": "A String", # The user's ID as visible in Permission resources.
     "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.
@@ -229,11 +249,11 @@
 
     { # The metadata for a revision to a file.
     "mimeType": "A String", # The MIME type of the revision.
-    "kind": "drive#revision", # This is always drive#revision.
+    "kind": "drive#revision", # Identifies what kind of resource this is. Value: the fixed string "drive#revision".
     "modifiedTime": "A String", # The last time the revision was modified (RFC 3339 date-time).
     "lastModifyingUser": { # Information about a Drive user. # The last user to modify this revision.
       "me": True or False, # Whether this user is the requesting user.
-      "kind": "drive#user", # This is always drive#user.
+      "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
       "displayName": "A String", # A plain text displayable name for this user.
       "permissionId": "A String", # The user's ID as visible in Permission resources.
       "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.