@@ -6612,7 +6612,9 @@ type NewFloatingTieredPackagePriceTieredPackageConfigParam struct {
66126612 // Package size
66136613 PackageSize param.Field[string] `json:"package_size,required"`
66146614 // Apply tiered pricing after rounding up the quantity to the package size. Tiers
6615- // are defined using exclusive lower bounds.
6615+ // are defined using exclusive lower bounds. The tier bounds are defined based on
6616+ // the total quantity rather than the number of packages, so they must be multiples
6617+ // of the package size.
66166618 Tiers param.Field[[]NewFloatingTieredPackagePriceTieredPackageConfigTierParam] `json:"tiers,required"`
66176619}
66186620
@@ -10841,7 +10843,9 @@ type NewPlanTieredPackagePriceTieredPackageConfigParam struct {
1084110843 // Package size
1084210844 PackageSize param.Field[string] `json:"package_size,required"`
1084310845 // Apply tiered pricing after rounding up the quantity to the package size. Tiers
10844- // are defined using exclusive lower bounds.
10846+ // are defined using exclusive lower bounds. The tier bounds are defined based on
10847+ // the total quantity rather than the number of packages, so they must be multiples
10848+ // of the package size.
1084510849 Tiers param.Field[[]NewPlanTieredPackagePriceTieredPackageConfigTierParam] `json:"tiers,required"`
1084610850}
1084710851
@@ -14479,7 +14483,9 @@ type PriceTieredPackagePriceTieredPackageConfig struct {
1447914483 // Package size
1448014484 PackageSize string `json:"package_size,required"`
1448114485 // Apply tiered pricing after rounding up the quantity to the package size. Tiers
14482- // are defined using exclusive lower bounds.
14486+ // are defined using exclusive lower bounds. The tier bounds are defined based on
14487+ // the total quantity rather than the number of packages, so they must be multiples
14488+ // of the package size.
1448314489 Tiers []PriceTieredPackagePriceTieredPackageConfigTier `json:"tiers,required"`
1448414490 JSON priceTieredPackagePriceTieredPackageConfigJSON `json:"-"`
1448514491}
0 commit comments