Updated generated docs
diff --git a/docs/dyn/adsense.v1.reports.html b/docs/dyn/adsense.v1.reports.html
index cb7aa5f..2e47b0d 100644
--- a/docs/dyn/adsense.v1.reports.html
+++ b/docs/dyn/adsense.v1.reports.html
@@ -26,7 +26,36 @@
maxResults: integer, The maximum number of rows of report data to return.<br>
filter: string, Filters to be run on the report. (repeated)<br>
startIndex: integer, Index of the first row of report data to return.<br>
- dimension: string, Dimensions to base the report on. (repeated)</tt></dd></dl>
+ dimension: string, Dimensions to base the report on. (repeated)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "kind": "adsense#report", # Kind this is, in this case adsense#report.<br>
+ "rows": [ # The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request. The dimension cells contain strings, and the metric cells contain numbers.<br>
+ [<br>
+ "A String",<br>
+ ],<br>
+ ],<br>
+ "warnings": [ # Any warnings associated with generation of the report.<br>
+ "A String",<br>
+ ],<br>
+ "totals": [ # The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.<br>
+ "A String",<br>
+ ],<br>
+ "headers": [ # The header information of the columns requested in the report. This is a list of headers; one for each dimension in the request, followed by one for each metric in the request.<br>
+ {<br>
+ "currency": "A String", # The currency of this column. Only present if the header type is METRIC_CURRENCY.<br>
+ "type": "A String", # The type of the header; one of DIMENSION, METRIC_TALLY, METRIC_RATIO, or METRIC_CURRENCY.<br>
+ "name": "A String", # The name of the header.<br>
+ },<br>
+ ],<br>
+ "totalMatchedRows": "A String", # The total number of rows matched by the report request. Fewer rows may be returned in the response due to being limited by the row count requested or the report row limit.<br>
+ "averages": [ # The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.<br>
+ "A String",<br>
+ ],<br>
+ }</tt></dd></dl>
<hr>
Data descriptors defined here:<br>