Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: generated/googleapis/lib/adexchangebuyer/v1_3.dart

Issue 1797933002: Api-roll 33: 2016-03-14 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: generated/googleapis/lib/adexchangebuyer/v1_3.dart
diff --git a/generated/googleapis/lib/adexchangebuyer/v1_3.dart b/generated/googleapis/lib/adexchangebuyer/v1_3.dart
index 3b5acd5b45e702a4b50a8bb83da858911a6bf5aa..aef51227a65d6fa853ac6e966f50729103e35e47 100644
--- a/generated/googleapis/lib/adexchangebuyer/v1_3.dart
+++ b/generated/googleapis/lib/adexchangebuyer/v1_3.dart
@@ -2005,6 +2005,8 @@ class DirectDeal {
core.int accountId;
/** The name of the advertiser this deal is for. */
core.String advertiser;
+ /** Whether the publisher for this deal is eligible for alcohol ads. */
+ core.bool allowsAlcohol;
/**
* The currency code that applies to the fixed_cpm value. If not set then
* assumed to be USD.
@@ -2061,6 +2063,9 @@ class DirectDeal {
if (_json.containsKey("advertiser")) {
advertiser = _json["advertiser"];
}
+ if (_json.containsKey("allowsAlcohol")) {
+ allowsAlcohol = _json["allowsAlcohol"];
+ }
if (_json.containsKey("currencyCode")) {
currencyCode = _json["currencyCode"];
}
@@ -2104,6 +2109,9 @@ class DirectDeal {
if (advertiser != null) {
_json["advertiser"] = advertiser;
}
+ if (allowsAlcohol != null) {
+ _json["allowsAlcohol"] = allowsAlcohol;
+ }
if (currencyCode != null) {
_json["currencyCode"] = currencyCode;
}

Powered by Google App Engine
This is Rietveld 408576698