Types > CustomerBalanceHistoryPage
Storefront APITypesCustomerBalanceHistoryPage
CustomerBalanceHistoryPage

Description

Topic: Customer Balance

Fields

count: Int!

Total number of items in the collection


items: [CustomerBalanceHistory!]!


last_key: String!

Key of the last item for keyset based iteration


Used By

Queries

storefrontCustomerBalanceHistory

Preview (typescript)

interface CustomerBalanceHistoryPage {
count: number
items: CustomerBalanceHistory[]
last_key: string
}