We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa99e03 commit 82e0b13Copy full SHA for 82e0b13
appstoreserverlibrary/models/Data.py
@@ -5,6 +5,7 @@
5
import attr
6
7
from .Environment import Environment
8
+from .Status import Status
9
10
@define
11
class Data:
@@ -54,4 +55,11 @@ class Data:
54
55
Subscription renewal information, signed by the App Store, in JSON Web Signature (JWS) format.
56
57
https://developer.apple.com/documentation/appstoreserverapi/jwsrenewalinfo
58
+ """
59
+
60
+ status: Optional[Status] = attr.ib(default=None)
61
62
+ The status of an auto-renewable subscription as of the signedDate in the responseBodyV2DecodedPayload.
63
64
+ https://developer.apple.com/documentation/appstoreservernotifications/status
65
"""
0 commit comments