@@ -47,19 +47,19 @@ def verify_and_decode_renewal_info(self, signed_renewal_info: str) -> JWSRenewal
4747 """
4848 Verifies and decodes a signedRenewalInfo obtained from the App Store Server API, an App Store Server Notification, or from a device
4949
50- :param signed_renewal_info The signedRenewalInfo field
51- :return The decoded renewal info after verification
52- :throws VerificationException Thrown if the data could not be verified
50+ :param signed_renewal_info: The signedRenewalInfo field
51+ :return: The decoded renewal info after verification
52+ :throws VerificationException: Thrown if the data could not be verified
5353 """
5454 return cattrs .structure (self ._decode_signed_object (signed_renewal_info ), JWSRenewalInfoDecodedPayload )
5555
5656 def verify_and_decode_signed_transaction (self , signed_transaction : str ) -> JWSTransactionDecodedPayload :
5757 """
5858 Verifies and decodes a signedTransaction obtained from the App Store Server API, an App Store Server Notification, or from a device
5959
60- :param signed_transaction The signedRenewalInfo field
61- :return The decoded transaction info after verification
62- :throws VerificationException Thrown if the data could not be verified
60+ :param signed_transaction: The signedRenewalInfo field
61+ :return: The decoded transaction info after verification
62+ :throws VerificationException: Thrown if the data could not be verified
6363 """
6464 decoded_transaction_info = cattrs .structure (self ._decode_signed_object (signed_transaction ), JWSTransactionDecodedPayload )
6565 if decoded_transaction_info .bundleId != self ._bundle_id :
@@ -72,9 +72,9 @@ def verify_and_decode_notification(self, signed_payload: str) -> ResponseBodyV2D
7272 """
7373 Verifies and decodes an App Store Server Notification signedPayload
7474
75- :param signedPayload The payload received by your server
76- :return The decoded payload after verification
77- :throws VerificationException Thrown if the data could not be verified
75+ :param signedPayload: The payload received by your server
76+ :return: The decoded payload after verification
77+ :throws VerificationException: Thrown if the data could not be verified
7878 """
7979 decoded_dict = self ._decode_signed_object (signed_payload )
8080 decoded_signed_notification = cattrs .structure (decoded_dict , ResponseBodyV2DecodedPayload )
@@ -99,9 +99,9 @@ def verify_and_decode_app_transaction(self, signed_app_transaction: str) -> AppT
9999 """
100100 Verifies and decodes a signed AppTransaction
101101
102- :param signed_app_transaction The signed AppTransaction
103- :return The decoded AppTransaction after validation
104- :throws VerificationException Thrown if the data could not be verified
102+ :param signed_app_transaction: The signed AppTransaction
103+ :return: The decoded AppTransaction after validation
104+ :throws VerificationException: Thrown if the data could not be verified
105105 """
106106 decoded_dict = self ._decode_signed_object (signed_app_transaction )
107107 decoded_app_transaction = cattrs .structure (decoded_dict , AppTransaction )
0 commit comments