@apple/app-store-server-library
    Preparing search index...

    Interface RefundHistoryResponse

    A response that contains an array of signed JSON Web Signature (JWS) refunded transactions, and paging information.

    RefundHistoryResponse

    interface RefundHistoryResponse {
        hasMore?: boolean;
        revision?: string;
        signedTransactions?: string[];
    }
    Index

    Properties

    hasMore?: boolean

    A Boolean value indicating whether the App Store has more transaction data.

    hasMore

    revision?: string

    A token you use in a query to request the next set of transactions for the customer.

    revision

    signedTransactions?: string[]

    A list of up to 20 JWS transactions, or an empty array if the customer hasn't received any refunds in your app. The transactions are sorted in ascending order by revocationDate.

    JWSTransaction