Skip to content

Commit f7e3f41

Browse files
Add URL links to docs for items that are a List
Adding for same fields as apple/app-store-server-library-python#82
1 parent 084f4f2 commit f7e3f41

6 files changed

+8
-4
lines changed

src/main/java/com/apple/itunes/storekit/model/NotificationHistoryResponse.java

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public NotificationHistoryResponse addNotificationHistoryItem(NotificationHistor
8787
* An array of App Store server notification history records.
8888
*
8989
* @return notificationHistory
90+
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/notificationhistoryresponseitem">notificationHistoryResponseItem</a>
9091
**/
9192
public List<NotificationHistoryResponseItem> getNotificationHistory() {
9293
return notificationHistory;

src/main/java/com/apple/itunes/storekit/model/NotificationTypeV2.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import com.fasterxml.jackson.annotation.JsonValue;
66

77
/**
8-
* A notification type value that App Store Server Notifications V2 uses.
8+
* The type that describes the in-app purchase or external purchase event for which the App Store sends the version 2 notification.
99
*
10-
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/notificationtype">notificationType</a>
10+
* @see <a href="https://developer.apple.com/documentation/appstoreservernotifications/notificationtype">notificationType</a>
1111
*/
1212
public enum NotificationTypeV2 {
1313

src/main/java/com/apple/itunes/storekit/model/OrderLookupResponse.java

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public OrderLookupResponse addSignedTransactionsItem(String signedTransactionsIt
7676
* An array of in-app purchase transactions that are part of order, signed by Apple, in JSON Web Signature format.
7777
*
7878
* @return signedTransactions
79+
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
7980
**/
8081
public List<String> getSignedTransactions() {
8182
return signedTransactions;

src/main/java/com/apple/itunes/storekit/model/RefundHistoryResponse.java

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public RefundHistoryResponse addSignedTransactionsItem(String signedTransactions
4848
* A list of up to 20 JWS transactions, or an empty array if the customer hasn&#39;t received any refunds in your app. The transactions are sorted in ascending order by revocationDate.
4949
*
5050
* @return signedTransactions
51+
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
5152
**/
5253
public List<String> getSignedTransactions() {
5354
return signedTransactions;

src/main/java/com/apple/itunes/storekit/model/SubscriptionGroupIdentifierItem.java

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public SubscriptionGroupIdentifierItem addLastTransactionsItem(LastTransactionsI
6565
* An array of the most recent App Store-signed transaction information and App Store-signed renewal information for all auto-renewable subscriptions in the subscription group.
6666
*
6767
* @return lastTransactions
68+
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/lasttransactionsitem">lastTransactionsItem</a>
6869
**/
6970
public List<LastTransactionsItem> getLastTransactions() {
7071
return lastTransactions;

src/main/java/com/apple/itunes/storekit/model/Subtype.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import com.fasterxml.jackson.annotation.JsonValue;
66

77
/**
8-
* A notification subtype value that App Store Server Notifications 2 uses.
8+
* A string that provides details about select notification types in version 2.
99
*
10-
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/notificationsubtype">notificationSubtype</a>
10+
* @see <a href="https://developer.apple.com/documentation/appstoreservernotifications/subtype">subtype</a>
1111
*/
1212
public enum Subtype {
1313

0 commit comments

Comments
 (0)