Types > StorefrontCustomerBalance
Storefront APITypesStorefrontCustomerBalance
StorefrontCustomerBalance

Description

Topic: Customer Balance

Fields

balance: [CustomerBalancePerCurrency!]!

Customer balance amounts per-currency


order_count: Int!

The number of orders associated with this customer

Example: 0


total_spent: Int!

The total amount of money that the customer has spent at the shop

Example: 0.0


Used By

Queries

storefrontCustomerBalance

Preview (typescript)

interface StorefrontCustomerBalance {
balance: CustomerBalancePerCurrency[]
order_count: number
total_spent: number
}