Types > CustomerGroupPrice
Commerce APITypesCustomerGroupPrice
CustomerGroupPrice

Description

Fields

customer_group: CustomerGroup

Customer group this price is for

Expandable

Permission bit: "customer_groups.read"


price: Int!

Price specific to given customer group

Example: 0


tiered_pricing: TieredPricing


Used By

Types

ProductVariant

Preview (typescript)

interface CustomerGroupPrice {
customer_group?: CustomerGroup | null
price: number
tiered_pricing?: TieredPricing | null
}