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

Unified Diff: generated/googleapis/lib/reseller/v1sandbox.dart

Issue 1797933002: Api-roll 33: 2016-03-14 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Added resources/*/CHANGELOG.md, addresssed comments 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
« no previous file with comments | « generated/googleapis/lib/reseller/v1.dart ('k') | generated/googleapis/lib/siteverification/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/reseller/v1sandbox.dart
diff --git a/generated/googleapis/lib/reseller/v1sandbox.dart b/generated/googleapis/lib/reseller/v1sandbox.dart
index 8da178b210df2e71c0614d8dbaffce4af5dc8275..76e42d577b2a60cda1976ba49dd63fb50eea01ff 100644
--- a/generated/googleapis/lib/reseller/v1sandbox.dart
+++ b/generated/googleapis/lib/reseller/v1sandbox.dart
@@ -14,7 +14,7 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
const core.String USER_AGENT = 'dart-api-client reseller/v1sandbox';
-/** Lets you create and manage your customers and their subscriptions. */
+/** Creates and manages your customers and their subscriptions. */
class ResellerApi {
/** Manage users on your domain */
static const AppsOrderScope = "https://www.googleapis.com/auth/apps.order";
@@ -87,7 +87,7 @@ class CustomersResourceApi {
*
* [customerAuthToken] - An auth token needed for inserting a customer for
* which domain already exists. Can be generated at
- * https://www.google.com/a/cpanel//TransferToken. Optional.
+ * https://admin.google.com/TransferToken. Optional.
*
* Completes with a [Customer].
*
@@ -1169,6 +1169,8 @@ class Subscription {
core.String billingMethod;
/** Creation time of this subscription in milliseconds since Unix epoch. */
core.String creationTime;
+ /** Primary domain name of the customer */
+ core.String customerDomain;
/** The id of the customer to whom the subscription belongs. */
core.String customerId;
/** Identifies the resource as a Subscription. */
@@ -1218,6 +1220,9 @@ class Subscription {
if (_json.containsKey("creationTime")) {
creationTime = _json["creationTime"];
}
+ if (_json.containsKey("customerDomain")) {
+ customerDomain = _json["customerDomain"];
+ }
if (_json.containsKey("customerId")) {
customerId = _json["customerId"];
}
@@ -1267,6 +1272,9 @@ class Subscription {
if (creationTime != null) {
_json["creationTime"] = creationTime;
}
+ if (customerDomain != null) {
+ _json["customerDomain"] = customerDomain;
+ }
if (customerId != null) {
_json["customerId"] = customerId;
}
« no previous file with comments | « generated/googleapis/lib/reseller/v1.dart ('k') | generated/googleapis/lib/siteverification/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698