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

Unified Diff: generated/googleapis/lib/licensing/v1.dart

Issue 2779563003: Api-roll 47: 2017-03-27 (Closed)
Patch Set: Created 3 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
« no previous file with comments | « generated/googleapis/lib/language/v1.dart ('k') | generated/googleapis/lib/logging/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/licensing/v1.dart
diff --git a/generated/googleapis/lib/licensing/v1.dart b/generated/googleapis/lib/licensing/v1.dart
index 106c6c8f8682f4b479b7c18df1ddeea87a417794..171ed55ce1c1e59f8cd2f3d6482ebfedd36b8687 100644
--- a/generated/googleapis/lib/licensing/v1.dart
+++ b/generated/googleapis/lib/licensing/v1.dart
@@ -14,7 +14,7 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
const core.String USER_AGENT = 'dart-api-client licensing/v1';
-/** Licensing API to view and manage license for your domain. */
+/** Views and manages licenses for your domain. */
class LicensingApi {
/** View and manage G Suite licenses for your domain */
static const AppsLicensingScope = "https://www.googleapis.com/auth/apps.licensing";
@@ -423,12 +423,16 @@ class LicenseAssignment {
core.String etags;
/** Identifies the resource as a LicenseAssignment. */
core.String kind;
- /** Name of the product. */
+ /** Id of the product. */
core.String productId;
+ /** Display Name of the product. */
+ core.String productName;
/** Link to this page. */
core.String selfLink;
- /** Name of the sku of the product. */
+ /** Id of the sku of the product. */
core.String skuId;
+ /** Display Name of the sku of the product. */
+ core.String skuName;
/** Email id of the user. */
core.String userId;
@@ -444,12 +448,18 @@ class LicenseAssignment {
if (_json.containsKey("productId")) {
productId = _json["productId"];
}
+ if (_json.containsKey("productName")) {
+ productName = _json["productName"];
+ }
if (_json.containsKey("selfLink")) {
selfLink = _json["selfLink"];
}
if (_json.containsKey("skuId")) {
skuId = _json["skuId"];
}
+ if (_json.containsKey("skuName")) {
+ skuName = _json["skuName"];
+ }
if (_json.containsKey("userId")) {
userId = _json["userId"];
}
@@ -466,12 +476,18 @@ class LicenseAssignment {
if (productId != null) {
_json["productId"] = productId;
}
+ if (productName != null) {
+ _json["productName"] = productName;
+ }
if (selfLink != null) {
_json["selfLink"] = selfLink;
}
if (skuId != null) {
_json["skuId"] = skuId;
}
+ if (skuName != null) {
+ _json["skuName"] = skuName;
+ }
if (userId != null) {
_json["userId"] = userId;
}
« no previous file with comments | « generated/googleapis/lib/language/v1.dart ('k') | generated/googleapis/lib/logging/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698