You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/model/OneTimePurchaseDetails.java
+57Lines changed: 57 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,13 +37,30 @@ public final class OneTimePurchaseDetails extends com.google.api.client.json.Gen
37
37
@com.google.api.client.util.Key
38
38
privatejava.lang.StringofferId;
39
39
40
+
/**
41
+
* ID of the purchase option. This field is set for both purchase options and variant offers. For
42
+
* purchase options, this ID identifies the purchase option itself. For variant offers, this ID
43
+
* refers to the associated purchase option, and in conjunction with offer_id it identifies the
44
+
* variant offer.
45
+
* The value may be {@code null}.
46
+
*/
47
+
@com.google.api.client.util.Key
48
+
privatejava.lang.StringpurchaseOptionId;
49
+
40
50
/**
41
51
* The number of items purchased (for multi-quantity item purchases).
42
52
* The value may be {@code null}.
43
53
*/
44
54
@com.google.api.client.util.Key
45
55
privatejava.lang.Integerquantity;
46
56
57
+
/**
58
+
* The details of a rent purchase. Only set if it is a rent purchase.
59
+
* The value may be {@code null}.
60
+
*/
61
+
@com.google.api.client.util.Key
62
+
privateRentalDetailsrentalDetails;
63
+
47
64
/**
48
65
* The offer ID of the one-time purchase offer.
49
66
* @return value or {@code null} for none
@@ -61,6 +78,29 @@ public OneTimePurchaseDetails setOfferId(java.lang.String offerId) {
61
78
returnthis;
62
79
}
63
80
81
+
/**
82
+
* ID of the purchase option. This field is set for both purchase options and variant offers. For
83
+
* purchase options, this ID identifies the purchase option itself. For variant offers, this ID
84
+
* refers to the associated purchase option, and in conjunction with offer_id it identifies the
85
+
* variant offer.
86
+
* @return value or {@code null} for none
87
+
*/
88
+
publicjava.lang.StringgetPurchaseOptionId() {
89
+
returnpurchaseOptionId;
90
+
}
91
+
92
+
/**
93
+
* ID of the purchase option. This field is set for both purchase options and variant offers. For
94
+
* purchase options, this ID identifies the purchase option itself. For variant offers, this ID
95
+
* refers to the associated purchase option, and in conjunction with offer_id it identifies the
96
+
* variant offer.
97
+
* @param purchaseOptionId purchaseOptionId or {@code null} for none
0 commit comments