Fix method doc signatures for multiline required parameters (#374)
* Fix method doc signatures for multiline required parameters.
Existing doc generator failed to recognize parameters as required when parameter descriptions
extended over more than one line. Besides presenting incorrect information, resulting
inconsistencies broke checks for automated sample generation.
* Regen docs
diff --git a/docs/dyn/partners_v2.analytics.html b/docs/dyn/partners_v2.analytics.html
index 6f0ede4..8b892b4 100644
--- a/docs/dyn/partners_v2.analytics.html
+++ b/docs/dyn/partners_v2.analytics.html
@@ -122,25 +122,13 @@
{ # Response message for
# ListAnalytics.
- "nextPageToken": "A String", # A token to retrieve next page of results.
- # Pass this value in the `ListAnalyticsRequest.page_token` field in the
- # subsequent call to
- # ListAnalytics to retrieve the
- # next page of results.
"analyticsSummary": { # Analytics aggregated data for a `Company` for a given date range. # Aggregated information across the response's
# analytics.
- "contactsCount": 42, # Aggregated number of times users contacted the `Company`
- # for given date range.
+ "profileViewsCount": 42, # Aggregated number of profile views for the `Company` for given date range.
"searchViewsCount": 42, # Aggregated number of times users saw the `Company`
# in Google Partners Search results for given date range.
- "profileViewsCount": 42, # Aggregated number of profile views for the `Company` for given date range.
- },
- "responseMetadata": { # Common data that is in each API response. # Current response metadata.
- "debugInfo": { # Debug information about this request. # Debug information about this request.
- "serverTraceInfo": "A String", # Server-side debug stack trace.
- "serviceUrl": "A String", # URL of the service that handled this request.
- "serverInfo": "A String", # Info about the server that serviced this request.
- },
+ "contactsCount": 42, # Aggregated number of times users contacted the `Company`
+ # for given date range.
},
"analytics": [ # The list of analytics.
# Sorted in ascending order of
@@ -198,7 +186,7 @@
"eventCount": 42, # Number of times the type of event occurred.
# Meaning depends on context (e.g. profile views, contacts, etc.).
},
- "profileViews": { # Details of the analytics events for a `Company` within a single day. # Instances of users viewing the `Company` profile
+ "contacts": { # Details of the analytics events for a `Company` within a single day. # Instances of users contacting the `Company`
# on the specified date.
"eventLocations": [ # Location information of where these events occurred.
{ # An object representing a latitude/longitude pair. This is expressed as a pair
@@ -263,7 +251,7 @@
"year": 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
# a year.
},
- "contacts": { # Details of the analytics events for a `Company` within a single day. # Instances of users contacting the `Company`
+ "profileViews": { # Details of the analytics events for a `Company` within a single day. # Instances of users viewing the `Company` profile
# on the specified date.
"eventLocations": [ # Location information of where these events occurred.
{ # An object representing a latitude/longitude pair. This is expressed as a pair
@@ -317,6 +305,18 @@
},
},
],
+ "nextPageToken": "A String", # A token to retrieve next page of results.
+ # Pass this value in the `ListAnalyticsRequest.page_token` field in the
+ # subsequent call to
+ # ListAnalytics to retrieve the
+ # next page of results.
+ "responseMetadata": { # Common data that is in each API response. # Current response metadata.
+ "debugInfo": { # Debug information about this request. # Debug information about this request.
+ "serverTraceInfo": "A String", # Server-side debug stack trace.
+ "serviceUrl": "A String", # URL of the service that handled this request.
+ "serverInfo": "A String", # Info about the server that serviced this request.
+ },
+ },
}</pre>
</div>