| OLD | NEW |
| 1 library googleapis.doubleclicksearch.v2; | 1 library googleapis.doubleclicksearch.v2; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 | 742 |
| 743 /** | 743 /** |
| 744 * The friendly segmentation identifier (for example, DoubleClick Search | 744 * The friendly segmentation identifier (for example, DoubleClick Search |
| 745 * Floodlight activity name). | 745 * Floodlight activity name). |
| 746 */ | 746 */ |
| 747 core.String segmentationName; | 747 core.String segmentationName; |
| 748 | 748 |
| 749 /** The segmentation type of this conversion (for example, FLOODLIGHT). */ | 749 /** The segmentation type of this conversion (for example, FLOODLIGHT). */ |
| 750 core.String segmentationType; | 750 core.String segmentationType; |
| 751 | 751 |
| 752 /** The state of the conversion, that is, either ACTIVE or DELETED. */ | 752 /** |
| 753 * The state of the conversion, that is, either ACTIVE or REMOVED. Note: state |
| 754 * DELETED is deprecated. |
| 755 */ |
| 753 core.String state; | 756 core.String state; |
| 754 | 757 |
| 755 /** | 758 /** |
| 756 * The type of the conversion, that is, either ACTION or TRANSACTION. An | 759 * The type of the conversion, that is, either ACTION or TRANSACTION. An |
| 757 * ACTION conversion is an action by the user that has no monetarily | 760 * ACTION conversion is an action by the user that has no monetarily |
| 758 * quantifiable value, while a TRANSACTION conversion is an action that does | 761 * quantifiable value, while a TRANSACTION conversion is an action that does |
| 759 * have a monetarily quantifiable value. Examples are email list signups | 762 * have a monetarily quantifiable value. Examples are email list signups |
| 760 * (ACTION) versus ecommerce purchases (TRANSACTION). | 763 * (ACTION) versus ecommerce purchases (TRANSACTION). |
| 761 */ | 764 */ |
| 762 core.String type; | 765 core.String type; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1179 * advertiser or lower, and the custom dimension must already be set up in | 1182 * advertiser or lower, and the custom dimension must already be set up in |
| 1180 * DoubleClick Search. The custom dimension name, which appears in DoubleClick | 1183 * DoubleClick Search. The custom dimension name, which appears in DoubleClick |
| 1181 * Search, is case sensitive. | 1184 * Search, is case sensitive. |
| 1182 * If used in a conversion report, returns the value of the specified custom | 1185 * If used in a conversion report, returns the value of the specified custom |
| 1183 * dimension for the given conversion, if set. This column does not segment | 1186 * dimension for the given conversion, if set. This column does not segment |
| 1184 * the conversion report. | 1187 * the conversion report. |
| 1185 */ | 1188 */ |
| 1186 core.String customDimensionName; | 1189 core.String customDimensionName; |
| 1187 | 1190 |
| 1188 /** | 1191 /** |
| 1189 * Reports on the provided custom metric. The report must be scoped to an | 1192 * Name of a custom metric to include in the report. The report must be scoped |
| 1190 * advertiser or lower, and the custom metric must already be set up in | 1193 * to an advertiser or lower, and the custom metric must already be set up in |
| 1191 * DoubleClick Search. The custom metric name, which appears in DoubleClick | 1194 * DoubleClick Search. The custom metric name, which appears in DoubleClick |
| 1192 * Search, is case sensitive. | 1195 * Search, is case sensitive. |
| 1193 */ | 1196 */ |
| 1194 core.String customMetricName; | 1197 core.String customMetricName; |
| 1195 | 1198 |
| 1196 /** | 1199 /** |
| 1197 * Inclusive day in YYYY-MM-DD format. When provided, this overrides the | 1200 * Inclusive day in YYYY-MM-DD format. When provided, this overrides the |
| 1198 * overall time range of the report for this column only. Must be provided | 1201 * overall time range of the report for this column only. Must be provided |
| 1199 * together with startDate. | 1202 * together with startDate. |
| 1200 */ | 1203 */ |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1892 core.Map toJson() { | 1895 core.Map toJson() { |
| 1893 var _json = new core.Map(); | 1896 var _json = new core.Map(); |
| 1894 if (availabilities != null) { | 1897 if (availabilities != null) { |
| 1895 _json["availabilities"] = availabilities.map((value) => (value).toJson()).
toList(); | 1898 _json["availabilities"] = availabilities.map((value) => (value).toJson()).
toList(); |
| 1896 } | 1899 } |
| 1897 return _json; | 1900 return _json; |
| 1898 } | 1901 } |
| 1899 } | 1902 } |
| 1900 | 1903 |
| 1901 | 1904 |
| OLD | NEW |