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

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

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years 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/mapsengine/v1.dart ('k') | generated/googleapis/lib/src/common_internal.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/reseller/v1.dart
diff --git a/generated/googleapis/lib/reseller/v1.dart b/generated/googleapis/lib/reseller/v1.dart
index 6d16975b30565f8c88701b2b3bcb92f7a7aeb38e..b854c8bd6ef21e3da77f561a0881dbd2013bfeaf 100644
--- a/generated/googleapis/lib/reseller/v1.dart
+++ b/generated/googleapis/lib/reseller/v1.dart
@@ -438,6 +438,7 @@ class SubscriptionsResourceApi {
* - "downgrade" : Downgrades a Google Apps for Business subscription to
* Google Apps
* - "suspend" : Suspends the subscriptions for 4 days before cancelling it
+ * - "transfer_to_direct" : Transfers a subscription directly to Google
*
* Completes with a [common.ApiRequestError] if the API endpoint returned an
* error.
@@ -1016,10 +1017,9 @@ class Seats {
core.String kind;
/**
- * Read only field containing the current number of licensed seats. Resellers
- * can utilize this field to gather insights into usage for FLEXIBLE
- * Google-Apps subscriptions and other secondary subscriptions (e.g.
- * Google-Vault, Drive-storage).
+ * Read-only field containing the current number of licensed seats for
+ * FLEXIBLE Google-Apps subscriptions and secondary subscriptions such as
+ * Google-Vault and Drive-storage.
*/
core.int licensedNumberOfSeats;
@@ -1217,6 +1217,9 @@ class SubscriptionTrialSettings {
/** JSON template for a subscription. */
class Subscription {
+ /** Billing method of this subscription. */
+ core.String billingMethod;
+
/** Creation time of this subscription in milliseconds since Unix epoch. */
core.String creationTime;
@@ -1260,6 +1263,9 @@ class Subscription {
Subscription();
Subscription.fromJson(core.Map _json) {
+ if (_json.containsKey("billingMethod")) {
+ billingMethod = _json["billingMethod"];
+ }
if (_json.containsKey("creationTime")) {
creationTime = _json["creationTime"];
}
@@ -1303,6 +1309,9 @@ class Subscription {
core.Map toJson() {
var _json = new core.Map();
+ if (billingMethod != null) {
+ _json["billingMethod"] = billingMethod;
+ }
if (creationTime != null) {
_json["creationTime"] = creationTime;
}
« no previous file with comments | « generated/googleapis/lib/mapsengine/v1.dart ('k') | generated/googleapis/lib/src/common_internal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698