@@ -91,11 +91,11 @@ type JWSRenewalInfoDecodedPayload struct {
91
91
Environment Environment `json:"environment"`
92
92
ExpirationIntent int32 `json:"expirationIntent"`
93
93
GracePeriodExpiresDate int64 `json:"gracePeriodExpiresDate"`
94
- IsInBillingRetryPeriod bool `json:"isInBillingRetryPeriod"`
94
+ IsInBillingRetryPeriod * bool `json:"isInBillingRetryPeriod"`
95
95
OfferIdentifier string `json:"offerIdentifier"`
96
96
OfferType string `json:"offerType"`
97
97
OriginalTransactionId string `json:"originalTransactionId"`
98
- PriceIncreaseStatus int32 `json:"priceIncreaseStatus"`
98
+ PriceIncreaseStatus * int32 `json:"priceIncreaseStatus"`
99
99
ProductId string `json:"productId"`
100
100
RecentSubscriptionStartDate int64 `json:"recentSubscriptionStartDate"`
101
101
RenewalDate int64 `json:"renewalDate"`
@@ -151,7 +151,7 @@ type JWSTransaction struct {
151
151
OfferType int32 `json:"offerType,omitempty"`
152
152
OfferIdentifier string `json:"offerIdentifier,omitempty"`
153
153
RevocationDate int64 `json:"revocationDate,omitempty"`
154
- RevocationReason int32 `json:"revocationReason,omitempty"`
154
+ RevocationReason * int32 `json:"revocationReason,omitempty"`
155
155
IsUpgraded bool `json:"isUpgraded,omitempty"`
156
156
Storefront string `json:"storefront,omitempty"`
157
157
StorefrontId string `json:"storefrontId,omitempty"`
@@ -330,7 +330,7 @@ type RenewalInfo struct {
330
330
AutoRenewProductId string `json:"autoRenewProductId"`
331
331
ProductID string `json:"productId"`
332
332
AutoRenewStatus int `json:"autoRenewStatus"`
333
- IsInBillingRetryPeriod bool `json:"isInBillingRetryPeriod"`
333
+ IsInBillingRetryPeriod * bool `json:"isInBillingRetryPeriod"`
334
334
SignedDate int `json:"signedDate"`
335
335
Environment string `json:"environment"`
336
336
}
0 commit comments