PayMethodsResponse
Paginated response containing payment methods and pagination metadata.
Provides a structured response for payment method queries including the matching results and comprehensive pagination information for efficient data navigation.
type PayMethodsResponse {
items: [PayMethod!]!
itemsFound: Int!
offset: Int!
page: Int!
pages: Int!
start: Int!
end: Int!
}
Fields
PayMethodsResponse.items ● [PayMethod!]! non-null object
List of items of type PayMethod
PayMethodsResponse.itemsFound ● Int! non-null scalar
Total number of items found
PayMethodsResponse.offset ● Int! non-null scalar
The amount of items to show per page
PayMethodsResponse.page ● Int! non-null scalar
The current page
PayMethodsResponse.pages ● Int! non-null scalar
Total amount of pages
PayMethodsResponse.start ● Int! non-null scalar
Start position of the current page
PayMethodsResponse.end ● Int! non-null scalar
End position of the current page
Returned By
payMethods query