Types > CustomerBalancePerCurrency
Storefront APITypesCustomerBalancePerCurrency
CustomerBalancePerCurrency

Description

Fields

amount: Int!

Amount of money customer has on his balance in particular currency

Example: 34234


currency: String!

Currency code

Example: "USD"


Used By

Types

StorefrontCustomerBalance

Preview (typescript)

interface CustomerBalancePerCurrency {
amount: number
currency: string
}