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

Unified Diff: generated/googleapis/lib/androidpublisher/v2.dart

Issue 3003493002: Api-Roll 53: 2017-08-21 (Closed)
Patch Set: Created 3 years, 4 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/androidmanagement/v1.dart ('k') | generated/googleapis/lib/appengine/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/androidpublisher/v2.dart
diff --git a/generated/googleapis/lib/androidpublisher/v2.dart b/generated/googleapis/lib/androidpublisher/v2.dart
index 07df54eae31cecd92312951f766a95c26e5dbb76..fdbe8e843b0c7a4096b9afc26aad892107cc7fdb 100644
--- a/generated/googleapis/lib/androidpublisher/v2.dart
+++ b/generated/googleapis/lib/androidpublisher/v2.dart
@@ -3142,7 +3142,9 @@ class PurchasesVoidedpurchasesResourceApi {
* [endTime] - The time, in milliseconds since the Epoch, of the newest voided
* in-app product purchase that you want to see in the response. The value of
* this parameter cannot be greater than the current time and is ignored if a
- * pagination token is set. Default value is current time.
+ * pagination token is set. Default value is current time. Note: This filter
+ * is applied on the time at which the record is seen as voided by our systems
+ * and not the actual voided time returned in the response.
*
* [maxResults] - null
*
@@ -3151,7 +3153,9 @@ class PurchasesVoidedpurchasesResourceApi {
* [startTime] - The time, in milliseconds since the Epoch, of the oldest
* voided in-app product purchase that you want to see in the response. The
* value of this parameter cannot be older than 30 days and is ignored if a
- * pagination token is set. Default value is current time minus 30 days.
+ * pagination token is set. Default value is current time minus 30 days. Note:
+ * This filter is applied on the time at which the record is seen as voided by
+ * our systems and not the actual voided time returned in the response.
*
* [token] - null
*
@@ -3411,6 +3415,11 @@ class ApkBinary {
* output of the sha1sum command.
*/
core.String sha1;
+ /**
+ * A sha256 hash of the APK payload, encoded as a hex string and matching the
+ * output of the sha256sum command.
+ */
+ core.String sha256;
ApkBinary();
@@ -3418,6 +3427,9 @@ class ApkBinary {
if (_json.containsKey("sha1")) {
sha1 = _json["sha1"];
}
+ if (_json.containsKey("sha256")) {
+ sha256 = _json["sha256"];
+ }
}
core.Map<core.String, core.Object> toJson() {
@@ -3425,6 +3437,9 @@ class ApkBinary {
if (sha1 != null) {
_json["sha1"] = sha1;
}
+ if (sha256 != null) {
+ _json["sha256"] = sha256;
+ }
return _json;
}
}
@@ -4872,6 +4887,8 @@ class ProductPurchase {
* service.
*/
core.String kind;
+ /** The order id associated with the purchase of the inapp product. */
+ core.String orderId;
/**
* The purchase state of the order. Possible values are:
* - Purchased
@@ -4896,6 +4913,9 @@ class ProductPurchase {
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
+ if (_json.containsKey("orderId")) {
+ orderId = _json["orderId"];
+ }
if (_json.containsKey("purchaseState")) {
purchaseState = _json["purchaseState"];
}
@@ -4915,6 +4935,9 @@ class ProductPurchase {
if (kind != null) {
_json["kind"] = kind;
}
+ if (orderId != null) {
+ _json["orderId"] = orderId;
+ }
if (purchaseState != null) {
_json["purchaseState"] = purchaseState;
}
@@ -5224,10 +5247,16 @@ class SubscriptionPurchase {
* service.
*/
core.String kind;
+ /**
+ * The order id of the latest recurring order associated with the purchase of
+ * the subscription.
+ */
+ core.String orderId;
/**
* The payment state of the subscription. Possible values are:
* - Payment pending
* - Payment received
+ * - Free trial
*/
core.int paymentState;
/**
@@ -5275,6 +5304,9 @@ class SubscriptionPurchase {
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
+ if (_json.containsKey("orderId")) {
+ orderId = _json["orderId"];
+ }
if (_json.containsKey("paymentState")) {
paymentState = _json["paymentState"];
}
@@ -5312,6 +5344,9 @@ class SubscriptionPurchase {
if (kind != null) {
_json["kind"] = kind;
}
+ if (orderId != null) {
+ _json["orderId"] = orderId;
+ }
if (paymentState != null) {
_json["paymentState"] = paymentState;
}
« no previous file with comments | « generated/googleapis/lib/androidmanagement/v1.dart ('k') | generated/googleapis/lib/appengine/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698