OLD | NEW |
1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
2 | 2 |
3 library googleapis.doubleclicksearch.v2; | 3 library googleapis.doubleclicksearch.v2; |
4 | 4 |
5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
6 import 'dart:collection' as collection; | 6 import 'dart:collection' as collection; |
7 import 'dart:async' as async; | 7 import 'dart:async' as async; |
8 import 'dart:convert' as convert; | 8 import 'dart:convert' as convert; |
9 | 9 |
10 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 10 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 core.String campaignId; | 674 core.String campaignId; |
675 /** | 675 /** |
676 * Sales channel for the product. Acceptable values are: | 676 * Sales channel for the product. Acceptable values are: |
677 * - "local": a physical store | 677 * - "local": a physical store |
678 * - "online": an online store | 678 * - "online": an online store |
679 */ | 679 */ |
680 core.String channel; | 680 core.String channel; |
681 /** DS click ID for the conversion. */ | 681 /** DS click ID for the conversion. */ |
682 core.String clickId; | 682 core.String clickId; |
683 /** | 683 /** |
684 * For offline conversions, this is an ID that advertisers are required to | 684 * For offline conversions, advertisers provide this ID. Advertisers can |
685 * provide. Advertisers can specify any ID that is meaningful to them. For | 685 * specify any ID that is meaningful to them. Each conversion in a request |
686 * online conversions, DS copies the dsConversionId or floodlightOrderId into | 686 * must specify a unique ID, and the combination of ID and timestamp must be |
687 * this property depending on the advertiser's Floodlight instructions. | 687 * unique amongst all conversions within the advertiser. |
| 688 * For online conversions, DS copies the dsConversionId or floodlightOrderId |
| 689 * into this property depending on the advertiser's Floodlight instructions. |
688 */ | 690 */ |
689 core.String conversionId; | 691 core.String conversionId; |
690 /** | 692 /** |
691 * The time at which the conversion was last modified, in epoch millis UTC. | 693 * The time at which the conversion was last modified, in epoch millis UTC. |
692 */ | 694 */ |
693 core.String conversionModifiedTimestamp; | 695 core.String conversionModifiedTimestamp; |
694 /** The time at which the conversion took place, in epoch millis UTC. */ | 696 /** The time at which the conversion took place, in epoch millis UTC. */ |
695 core.String conversionTimestamp; | 697 core.String conversionTimestamp; |
696 /** | 698 /** |
697 * Available to advertisers only after contacting DoubleClick Search customer | 699 * Available to advertisers only after contacting DoubleClick Search customer |
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1898 } | 1900 } |
1899 | 1901 |
1900 core.Map toJson() { | 1902 core.Map toJson() { |
1901 var _json = new core.Map(); | 1903 var _json = new core.Map(); |
1902 if (availabilities != null) { | 1904 if (availabilities != null) { |
1903 _json["availabilities"] = availabilities.map((value) => (value).toJson()).
toList(); | 1905 _json["availabilities"] = availabilities.map((value) => (value).toJson()).
toList(); |
1904 } | 1906 } |
1905 return _json; | 1907 return _json; |
1906 } | 1908 } |
1907 } | 1909 } |
OLD | NEW |