File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -430,8 +430,8 @@ func (c *StoreClient) ParseNotificationV2Payload(signedPayload string) (*Notific
430
430
431
431
// ParseNotificationV2 parses the signedTransactionInfo from decoded notification data
432
432
// (https://developer.apple.com/documentation/appstoreservernotifications/data)
433
- func (c * StoreClient ) ParseNotificationV2TransactionInfo (signedTransactionInfo string ) (* JWSRenewalInfoDecodedPayload , error ) {
434
- var result JWSRenewalInfoDecodedPayload
433
+ func (c * StoreClient ) ParseNotificationV2TransactionInfo (signedTransactionInfo string ) (* JWSTransaction , error ) {
434
+ var result JWSTransaction
435
435
if err := c .ParseSignedPayload (signedTransactionInfo , & result ); err != nil {
436
436
return nil , err
437
437
}
@@ -441,8 +441,8 @@ func (c *StoreClient) ParseNotificationV2TransactionInfo(signedTransactionInfo s
441
441
442
442
// ParseNotificationV2 parses the signedRenewalInfo from decoded notification data
443
443
// (https://developer.apple.com/documentation/appstoreservernotifications/data)
444
- func (c * StoreClient ) ParseNotificationV2RenewalInfo (signedRenewalInfo string ) (* JWSTransaction , error ) {
445
- var result JWSTransaction
444
+ func (c * StoreClient ) ParseNotificationV2RenewalInfo (signedRenewalInfo string ) (* JWSRenewalInfoDecodedPayload , error ) {
445
+ var result JWSRenewalInfoDecodedPayload
446
446
if err := c .ParseSignedPayload (signedRenewalInfo , & result ); err != nil {
447
447
return nil , err
448
448
}
You can’t perform that action at this time.
0 commit comments