Skip to content

Commit

Permalink
Merge pull request #95 from alexanderjordanbaker/UpdateListDocLinks
Browse files Browse the repository at this point in the history
Add URL links to docs for items that are a List
  • Loading branch information
alexanderjordanbaker committed May 6, 2024
2 parents 3ceb842 + f7e3f41 commit cd5c09c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public NotificationHistoryResponse addNotificationHistoryItem(NotificationHistor
* An array of App Store server notification history records.
*
* @return notificationHistory
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/notificationhistoryresponseitem">notificationHistoryResponseItem</a>
**/
public List<NotificationHistoryResponseItem> getNotificationHistory() {
return notificationHistory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import com.fasterxml.jackson.annotation.JsonValue;

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public OrderLookupResponse addSignedTransactionsItem(String signedTransactionsIt
* An array of in-app purchase transactions that are part of order, signed by Apple, in JSON Web Signature format.
*
* @return signedTransactions
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
**/
public List<String> getSignedTransactions() {
return signedTransactions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public RefundHistoryResponse addSignedTransactionsItem(String signedTransactions
* 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.
*
* @return signedTransactions
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
**/
public List<String> getSignedTransactions() {
return signedTransactions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public SubscriptionGroupIdentifierItem addLastTransactionsItem(LastTransactionsI
* 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.
*
* @return lastTransactions
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/lasttransactionsitem">lastTransactionsItem</a>
**/
public List<LastTransactionsItem> getLastTransactions() {
return lastTransactions;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/apple/itunes/storekit/model/Subtype.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import com.fasterxml.jackson.annotation.JsonValue;

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

Expand Down

0 comments on commit cd5c09c

Please sign in to comment.