Index: generated/googleapis/lib/reseller/v1.dart |
diff --git a/generated/googleapis/lib/reseller/v1.dart b/generated/googleapis/lib/reseller/v1.dart |
index 62eb605b5fb0b49b5c97e57e6e51918a4f189d7f..0676830452a3b296e35bdc1188bbc6a6b9aa8722 100644 |
--- a/generated/googleapis/lib/reseller/v1.dart |
+++ b/generated/googleapis/lib/reseller/v1.dart |
@@ -1678,6 +1678,13 @@ class Subscription { |
* SKUs available in this version of the API, see Product and SKU IDs. |
*/ |
core.String skuId; |
+ /** |
+ * Read-only external display name for a product's SKU assigned to a customer |
+ * in the subscription. SKU names are subject to change at Google's |
+ * discretion. For products and SKUs available in this version of the API, see |
+ * Product and SKU IDs. |
+ */ |
+ core.String skuName; |
/** This is an optional property. */ |
core.String status; |
/** |
@@ -1755,6 +1762,9 @@ class Subscription { |
if (_json.containsKey("skuId")) { |
skuId = _json["skuId"]; |
} |
+ if (_json.containsKey("skuName")) { |
+ skuName = _json["skuName"]; |
+ } |
if (_json.containsKey("status")) { |
status = _json["status"]; |
} |
@@ -1810,6 +1820,9 @@ class Subscription { |
if (skuId != null) { |
_json["skuId"] = skuId; |
} |
+ if (skuName != null) { |
+ _json["skuName"] = skuName; |
+ } |
if (status != null) { |
_json["status"] = status; |
} |