| Index: generated/googleapis/lib/doubleclicksearch/v2.dart
|
| diff --git a/generated/googleapis/lib/doubleclicksearch/v2.dart b/generated/googleapis/lib/doubleclicksearch/v2.dart
|
| index 9a9613b5b262bd80aa5595d4485f246b9f64c3f9..07bb356351d9737d0f88692b3a75279be5702236 100644
|
| --- a/generated/googleapis/lib/doubleclicksearch/v2.dart
|
| +++ b/generated/googleapis/lib/doubleclicksearch/v2.dart
|
| @@ -1179,10 +1179,21 @@ class ReportApiColumnSpec {
|
| * advertiser or lower, and the custom dimension must already be set up in
|
| * DoubleClick Search. The custom dimension name, which appears in DoubleClick
|
| * Search, is case sensitive.
|
| + * If used in a conversion report, returns the value of the specified custom
|
| + * dimension for the given conversion, if set. This column does not segment
|
| + * the conversion report.
|
| */
|
| core.String customDimensionName;
|
|
|
| /**
|
| + * Reports on the provided custom metric. The report must be scoped to an
|
| + * advertiser or lower, and the custom metric must already be set up in
|
| + * DoubleClick Search. The custom metric name, which appears in DoubleClick
|
| + * Search, is case sensitive.
|
| + */
|
| + core.String customMetricName;
|
| +
|
| + /**
|
| * Inclusive day in YYYY-MM-DD format. When provided, this overrides the
|
| * overall time range of the report for this column only. Must be provided
|
| * together with startDate.
|
| @@ -1233,6 +1244,9 @@ class ReportApiColumnSpec {
|
| if (_json.containsKey("customDimensionName")) {
|
| customDimensionName = _json["customDimensionName"];
|
| }
|
| + if (_json.containsKey("customMetricName")) {
|
| + customMetricName = _json["customMetricName"];
|
| + }
|
| if (_json.containsKey("endDate")) {
|
| endDate = _json["endDate"];
|
| }
|
| @@ -1261,6 +1275,9 @@ class ReportApiColumnSpec {
|
| if (customDimensionName != null) {
|
| _json["customDimensionName"] = customDimensionName;
|
| }
|
| + if (customMetricName != null) {
|
| + _json["customMetricName"] = customMetricName;
|
| + }
|
| if (endDate != null) {
|
| _json["endDate"] = endDate;
|
| }
|
|
|