Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 2.6 KB

DisputeSummaryResponse.md

File metadata and controls

16 lines (12 loc) · 2.6 KB

DisputeSummaryResponse

Properties

Name Type Description Notes
paymentDisputeSummaries \macropage\SDKs\ebay\rest\fulfillment\Model\PaymentDisputeSummary[] Each payment dispute that matches the input criteria is returned under this array. If no payment disputes are found, an empty array is returned. [optional]
total int This integer value is the total number of payment disputes that matched the input criteria. If the total number of entries exceeds the value that was set for limit in the request payload, you will have to make multiple API calls to see all pages of the results set. This field is returned even if it is 0. [optional]
href string The URI of the getPaymentDisputeSummaries call request that produced the current page of the result set. [optional]
next string The getPaymentDisputeSummaries call URI to use if you wish to view the next page of the result set. For example, the following URI returns records 11 thru 20 from the collection of payment disputes: path/payment_dispute_summary?limit=10&offset=10 This field is only returned if there is a next page of results to view based on the current input criteria. [optional]
prev string The getPaymentDisputeSummaries call URI to use if you wish to view the previous page of the result set. For example, the following URI returns records 1 thru 10 from the collection of payment disputes: path/payment_dispute_summary?limit=10&offset=0 This field is only returned if there is a previous page of results to view based on the current input criteria. [optional]
limit int This value shows the maximum number of payment disputes that will appear on one page of the result set. The limit value can be passed in as a query parameter in the request, or if it is not used, it defaults to 200. If the value in the total field exceeds this limit value, there are multiple pages in the current result set. Min: 1; Max: 200; Default: 200 [optional]
offset int This integer value indicates the number of payment disputes skipped before listing the first payment dispute from the result set. The offset value can be passed in as a query parameter in the request, or if it is not used, it defaults to 0 and the first payment dispute of the result set is shown at the top of the response. [optional]

[Back to Model list] [Back to API list] [Back to README]