---
title: "Evaluate preview events"
method: POST
path: "/prices/evaluate_preview_events"
tags: ["Price", "Event"]
---

# Evaluate preview events

`POST /prices/evaluate_preview_events`

This endpoint evaluates prices on preview events instead of actual usage, making it ideal for building
price calculators and cost estimation tools. You can filter and group results using
[computed properties](/extensibility/advanced-metrics#computed-properties) to analyze
pricing across different dimensions.

Prices may either reference existing prices in your Orb account or be defined inline in the request body. The endpoint has the
following limitations:
1. Up to 100 prices can be evaluated in a single request.
2. Up to 500 preview events can be provided in a single request.

A top-level customer_id is required to evaluate the preview events. Additionally, all events without a customer_id will have
the top-level customer_id added.

Note that this is a POST endpoint rather than a GET endpoint because it employs a JSON body rather than query parameters.

## Request body

- EvaluateMultiplePricesWithPreviewEventsBody
  - `customer_id` string, nullable — The ID of the customer to which this evaluation is scoped.
  - `external_customer_id` string, nullable — The external customer ID of the customer to which this evaluation is scoped.
  - `timeframe_start` string, date-time, required — The inclusive lower bound for event timestamps
  - `timeframe_end` string, date-time, required — The exclusive upper bound for event timestamps
  - `events` PreviewEvent[] — List of preview events to use instead of actual usage data
    - `customer_id` string, nullable — The Orb Customer identifier
    - `external_customer_id` string, nullable — An alias for the Orb customer, whose mapping is specified when creating the customer
    - `event_name` string, required — A name to meaningfully identify the action or event type.
    - `timestamp` string, date-time, required — An ISO 8601 format date with no timezone offset (i.e. UTC). This should represent the time that usage was recorded, and is particularly important to attribute usage to a given billing period.
    - `properties` object, required — A dictionary of custom properties. Values in this dictionary must be numeric, boolean, or strings. Nested dictionaries are disallowed.
  - `price_evaluations` PriceEvaluationRequest[] — List of prices to evaluate (max 100)
    - `price_id` string, nullable — The ID of a price to evaluate that exists in your Orb account.
    - `price` union — New floating price request body params.
      - NewFloatingUnitPrice
        - `model_type` 'unit', required — The pricing model type
        - `unit_config` UnitConfig, required — Configuration for unit pricing
          - `unit_amount` string, required — Rate per unit of usage
          - `prorated` boolean — If true, subtotals from this price are prorated based on the service period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingTieredPrice
        - `model_type` 'tiered', required — The pricing model type
        - `tiered_config` TieredConfig, required — Configuration for tiered pricing
          - `tiers` Tier[], required — Tiers for rating based on total usage quantities into the specified tier
            - `first_unit` number, required — Exclusive tier starting value
            - `last_unit` number, nullable — Inclusive tier ending value. This value is null if and only if this is the last tier.
            - `unit_amount` string, required — Amount per unit
          - `prorated` boolean — If true, subtotals from this price are prorated based on the service period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingBulkPrice
        - `model_type` 'bulk', required — The pricing model type
        - `bulk_config` BulkConfig, required — Configuration for bulk pricing
          - `tiers` BulkTier[], required — Bulk tiers for rating based on total usage volume
            - `maximum_units` number, nullable — Upper bound for this tier
            - `unit_amount` string, required — Amount per unit
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingBulkWithFiltersPrice
        - `model_type` 'bulk_with_filters', required — The pricing model type
        - `bulk_with_filters_config` BulkWithFiltersConfig, required — Bulk pricing with event filtering applies bulk pricing tiers based on total usage volume, but only charges for events that match specified property filters. How it works: 1. **Tier Selection**: Uses the customer's total usage quantity to determine which bulk pricing tier applies 2. **Event Filtering**: Only counts events where the specified property filters match (supports single or multiple filters) 3. **Billing**: Charges the filtered quantity at the rate determined by the total usage tier Example: - Total usage: 150 events - Bulk tiers: 0-99 = $1.00, 100+ = $0.80 - Filters: region="us-east-1" AND environment="production" - Filtered events: 75 events matching both filters - Result: 75 events × $0.80 = $60.00 (rate determined by 150 total, but only 75 charged) This allows customers to get bulk discounts based on their total volume while only paying for usage in specific regions, environments, or other filtered categories.
          - `tiers` BulkWithFiltersTier[], required — Bulk tiers for rating based on total usage volume
            - `tier_lower_bound` string, nullable — The lower bound for this tier
            - `unit_amount` string, required — Amount per unit
          - `filters` FilterRule[], required — Property filters to apply (all must match)
            - `property_key` string, required — Event property key to filter on
            - `property_value` string, required — Event property value to match
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingPackagePrice
        - `model_type` 'package', required — The pricing model type
        - `package_config` PackageConfig, required — Configuration for package pricing
          - `package_amount` string, required — A currency amount to rate usage by
          - `package_size` integer, required — An integer amount to represent package size. For example, 1000 here would divide usage by 1000 before multiplying by package_amount in rating
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMatrixPrice
        - `model_type` 'matrix', required — The pricing model type
        - `matrix_config` MatrixConfig, required — Configuration for matrix pricing
          - `dimensions` string[], required — One or two event property values to evaluate matrix groups by
          - `default_unit_amount` string, required — Default per unit rate for any usage not bucketed into a specified matrix_value
          - `matrix_values` MatrixValue[], required — Matrix values configuration
            - `unit_amount` string, required — Unit price for the specified dimension_values
            - `dimension_values` string[], required — One or two matrix keys to filter usage to this Matrix value by
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingThresholdTotalAmountPrice
        - `model_type` 'threshold_total_amount', required — The pricing model type
        - `threshold_total_amount_config` ThresholdTotalAmountConfig, required — Configuration for tiered total pricing
          - `consumption_table` TieredTotalThreshold[], required — When the quantity consumed passes a provided threshold, the configured total will be charged
            - `threshold` string, required
            - `total_amount` string, required — Total amount for this threshold
          - `prorate` boolean, nullable — If true, the unit price will be prorated to the billing period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingTieredPackagePrice
        - `model_type` 'tiered_package', required — The pricing model type
        - `tiered_package_config` TieredPackagePricingConfig, required — Configuration for tiered package pricing
          - `tiers` TieredPackageTierItem[], required — Apply tiered pricing after rounding up the quantity to the package size. Tiers are defined using exclusive lower bounds. The tier bounds are defined based on the total quantity rather than the number of packages, so they must be multiples of the package size.
            - `tier_lower_bound` string, required
            - `per_unit` string, required — Price per package
          - `package_size` string, required
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingTieredWithMinimumPrice
        - `model_type` 'tiered_with_minimum', required — The pricing model type
        - `tiered_with_minimum_config` TieredPricingWithMinimumConfig, required — Configuration for tiered pricing with minimum
          - `tiers` TieredPricingWithMinimumTierItem[], required — Tiered pricing with a minimum amount dependent on the volume tier. Tiers are defined using exclusive lower bounds.
            - `tier_lower_bound` string, required
            - `unit_amount` string, required — Per unit amount
            - `minimum_amount` string, required
          - `hide_zero_amount_tiers` boolean — If true, tiers with an accrued amount of 0 will not be included in the rating.
          - `prorate` boolean — If true, the unit price will be prorated to the billing period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedTieredPrice
        - `model_type` 'grouped_tiered', required — The pricing model type
        - `grouped_tiered_config` GroupedTieredConfig, required — Configuration for grouped tiered pricing
          - `tiers` GroupedTieredTier[], required — Apply tiered pricing to each segment generated after grouping with the provided key
            - `tier_lower_bound` string, required
            - `unit_amount` string, required — Per unit amount
          - `grouping_key` string, required — The billable metric property used to group before tiering
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingTieredPackageWithMinimumPrice
        - `model_type` 'tiered_package_with_minimum', required — The pricing model type
        - `tiered_package_with_minimum_config` TieredPackagePricingWithMinimumConfig, required — Configuration for tiered package pricing with minimum
          - `tiers` TieredPackageWithMinimumTierItem[], required — Apply tiered pricing after rounding up the quantity to the package size. Tiers are defined using exclusive lower bounds.
            - `tier_lower_bound` string, required
            - `per_unit` string, required
            - `minimum_amount` string, required
          - `package_size` number, required
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingPackageWithAllocationPrice
        - `model_type` 'package_with_allocation', required — The pricing model type
        - `package_with_allocation_config` PackageWithAllocationConfig, required — Configuration for package pricing with usage allocation
          - `package_amount` string, required
          - `package_size` string, required
          - `allocation` string, required
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingUnitWithPercentPrice
        - `model_type` 'unit_with_percent', required — The pricing model type
        - `unit_with_percent_config` UnitWithPercentConfig, required — Configuration for unit pricing with percentage
          - `unit_amount` string, required — Rate per unit of usage
          - `percent` string, required — What percent, out of 100, of the calculated total to charge
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMatrixWithAllocationPrice
        - `model_type` 'matrix_with_allocation', required — The pricing model type
        - `matrix_with_allocation_config` MatrixWithAllocationConfig, required — Configuration for matrix pricing with usage allocation
          - `dimensions` string[], required — One or two event property values to evaluate matrix groups by
          - `default_unit_amount` string, required — Default per unit rate for any usage not bucketed into a specified matrix_value
          - `allocation` string, required — Usage allocation
          - `matrix_values` MatrixWithAllocationValueItem[], required — Matrix values configuration
            - `unit_amount` string, required — Unit price for the specified dimension_values
            - `dimension_values` string[], required — One or two matrix keys to filter usage to this Matrix value by. For example, ["region", "tier"] could be used to filter cloud usage by a cloud region and an instance tier.
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMatrixWithThresholdDiscountsPrice
        - `model_type` 'matrix_with_threshold_discounts', required — The pricing model type
        - `matrix_with_threshold_discounts_config` MatrixWithThresholdDiscountsConfig, required — Matrix pricing with per-dimension-subset threshold discounts. Each threshold-discount group targets a subset of matrix cells and applies a two-rate discount: a baseline % on spend at or below a threshold, and a steeper % on spend above.
          - `first_dimension` string, required — First matrix dimension key.
          - `second_dimension` string, nullable — Optional second matrix dimension key.
          - `default_unit_amount` string, required — Unit price used for usage that does not match any defined matrix cell.
          - `matrix_values` MatrixCell[], required — Per-cell unit prices.
            - `first_dimension_value` string, required
            - `second_dimension_value` string, nullable
            - `unit_amount` string, required
          - `threshold_discount_groups` ThresholdDiscountGroup[]
            - `description` string, nullable
            - `cell_coordinates` string, required — Semicolon-separated list of matrix cell coordinates targeted by this group. Each coordinate is `first,second` when the matrix has two dimensions, or just `first` for a single-dimension matrix. Example: `blue,circle;green,triangle`.
            - `threshold_amount` string, required
            - `below_threshold_discount_percentage` string, required — Discount rate applied to spend at or below the threshold. Set to 0 for no baseline discount.
            - `above_threshold_discount_percentage` string, required — Discount rate applied to spend above the threshold.
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingTieredWithProrationPrice
        - `model_type` 'tiered_with_proration', required — The pricing model type
        - `tiered_with_proration_config` TieredWithProrationConfig, required — Configuration for tiered pricing with proration
          - `tiers` TieredWithProrationTier[], required — Tiers for rating based on total usage quantities into the specified tier with proration
            - `tier_lower_bound` string, required — Inclusive tier starting value
            - `unit_amount` string, required — Amount per unit
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingUnitWithProrationPrice
        - `model_type` 'unit_with_proration', required — The pricing model type
        - `unit_with_proration_config` UnitWithProrationConfig, required — Configuration for unit pricing with proration
          - `unit_amount` string, required — Rate per unit of usage
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedAllocationPrice
        - `model_type` 'grouped_allocation', required — The pricing model type
        - `grouped_allocation_config` GroupedAllocationConfig, required — Configuration for grouped allocation pricing
          - `grouping_key` string, required — How to determine the groups that should each be allocated some quantity
          - `overage_unit_rate` string, required — Unit rate for post-allocation
          - `allocation` string, required — Usage allocation per group
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingBulkWithProrationPrice
        - `model_type` 'bulk_with_proration', required — The pricing model type
        - `bulk_with_proration_config` BulkWithProrationConfig, required — Configuration for bulk pricing with proration
          - `tiers` BulkTierWithProration[], required — Bulk tiers for rating based on total usage volume
            - `tier_lower_bound` string, nullable — The lower bound for this tier
            - `unit_amount` string, required — Cost per unit
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedWithProratedMinimumPrice
        - `model_type` 'grouped_with_prorated_minimum', required — The pricing model type
        - `grouped_with_prorated_minimum_config` GroupedWithProratedMinimumConfig, required — Configuration for grouped with prorated minimum pricing
          - `grouping_key` string, required — How to determine the groups that should each have a minimum
          - `unit_rate` string, required — The amount to charge per unit
          - `minimum` string, required — The minimum amount to charge per group
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedWithMeteredMinimumPrice
        - `model_type` 'grouped_with_metered_minimum', required — The pricing model type
        - `grouped_with_metered_minimum_config` GroupedWithMeteredMinimumConfig, required — Configuration for grouped with metered minimum pricing
          - `grouping_key` string, required — Used to partition the usage into groups. The minimum amount is applied to each group.
          - `pricing_key` string, required — Used to determine the unit rate
          - `scaling_key` string, required — Used to determine the unit rate scaling factor
          - `scaling_factors` GroupedWithMeteredMinimumScalingFactorItem[], required — Scale the unit rates by the scaling factor.
            - `scaling_value` string, required
            - `scaling_factor` string, required
          - `unit_amounts` GroupedWithMeteredMinimumUnitAmountItem[], required — Apply per unit pricing to each pricing value. The minimum amount is applied any unmatched usage.
            - `pricing_value` string, required
            - `unit_amount` string, required — Per unit amount
          - `minimum_unit_amount` string, required — The minimum amount to charge per group per unit
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedWithMinMaxThresholdsPrice
        - `model_type` 'grouped_with_min_max_thresholds', required — The pricing model type
        - `grouped_with_min_max_thresholds_config` GroupedWithMinMaxThresholdsConfig, required — Configuration for grouped with minimum and maximum thresholds pricing
          - `grouping_key` string, required — The event property used to group before applying thresholds
          - `per_unit_rate` string, required — The base price charged per group
          - `minimum_charge` string, required — The minimum amount to charge each group, regardless of usage
          - `maximum_charge` string, required — The maximum amount to charge each group
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMatrixWithDisplayNamePrice
        - `model_type` 'matrix_with_display_name', required — The pricing model type
        - `matrix_with_display_name_config` MatrixWithDisplayNameConfig, required — Configuration for matrix with display name pricing
          - `dimension` string, required — Used to determine the unit rate
          - `unit_amounts` MatrixWithDisplayNameUnitAmountItem[], required — Apply per unit pricing to each dimension value
            - `display_name` string, required — Display name for this dimension value
            - `dimension_value` string, required — The dimension value
            - `unit_amount` string, required — Per unit amount
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingGroupedTieredPackagePrice
        - `model_type` 'grouped_tiered_package', required — The pricing model type
        - `grouped_tiered_package_config` GroupedTieredPackagePricingConfig, required — Configuration for grouped tiered package pricing
          - `tiers` GroupedTieredPackageTierItem[], required — Apply tiered pricing after rounding up the quantity to the package size. Tiers are defined using exclusive lower bounds.
            - `tier_lower_bound` string, required
            - `per_unit` string, required — Per package
          - `package_size` string, required
          - `grouping_key` string, required — The event property used to group before tiering
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMaxGroupTieredPackagePrice
        - `model_type` 'max_group_tiered_package', required — The pricing model type
        - `max_group_tiered_package_config` MaxGroupTieredPackageConfig, required — Configuration for max group tiered package pricing
          - `tiers` MaxGroupTieredTierItem[], required — Apply tiered pricing to the largest group after grouping with the provided key.
            - `tier_lower_bound` string, required
            - `unit_amount` string, required — Per unit amount
          - `package_size` string, required
          - `grouping_key` string, required — The event property used to group before tiering the group with the highest value
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingScalableMatrixWithUnitPricingPrice
        - `model_type` 'scalable_matrix_with_unit_pricing', required — The pricing model type
        - `scalable_matrix_with_unit_pricing_config` ScalableMatrixWithUnitPricingConfig, required — Configuration for scalable matrix with unit pricing
          - `grouping_key` string, nullable — The property used to group this price
          - `unit_price` string, required — The final unit price to rate against the output of the matrix
          - `first_dimension` string, required — Used to determine the unit rate
          - `second_dimension` string, nullable — Used to determine the unit rate (optional)
          - `matrix_scaling_factors` ScalableMatrixWithUnitScalingFactor[], required — Apply a scaling factor to each dimension
            - `first_dimension_value` string, required
            - `second_dimension_value` string, nullable
            - `scaling_factor` string, required
          - `prorate` boolean, nullable — If true, the unit price will be prorated to the billing period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingScalableMatrixWithTieredPricingPrice
        - `model_type` 'scalable_matrix_with_tiered_pricing', required — The pricing model type
        - `scalable_matrix_with_tiered_pricing_config` ScalableMatrixWithTieredPricingConfig, required — Configuration for scalable matrix with tiered pricing
          - `tiers` ScalableMatrixWithTieredTierEntry[], required
            - `tier_lower_bound` string, required
            - `unit_amount` string, required
          - `first_dimension` string, required — Used for the scalable matrix first dimension
          - `second_dimension` string, nullable — Used for the scalable matrix second dimension (optional)
          - `matrix_scaling_factors` ScalableMatrixWithTieredScalingFactor[], required — Apply a scaling factor to each dimension
            - `first_dimension_value` string, required
            - `second_dimension_value` string, nullable
            - `scaling_factor` string, required
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingCumulativeGroupedBulkPrice
        - `model_type` 'cumulative_grouped_bulk', required — The pricing model type
        - `cumulative_grouped_bulk_config` CumulativeGroupedBulkConfig, required — Configuration for cumulative grouped bulk pricing
          - `group` string, required
          - `dimension_values` CumulativeGroupedBulkDimensionValue[], required — Each tier lower bound must have the same group of values.
            - `tier_lower_bound` string, required — Tier lower bound
            - `grouping_key` string, required — Grouping key value
            - `unit_amount` string, required — Unit amount for this combination
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingCumulativeGroupedAllocationPrice
        - `model_type` 'cumulative_grouped_allocation', required — The pricing model type
        - `cumulative_grouped_allocation_config` CumulativeGroupedAllocationConfig, required — Configuration for cumulative grouped allocation pricing. This rating function groups usage by a grouping key and applies both per-group and cumulative allocations. For each group (ordered by group value), it calculates the larger of the group overage and the incremental cumulative overage.
          - `grouping_key` string, required — The event property used to group usage before applying allocations
          - `group_allocation` string, required — The allocation per individual group
          - `cumulative_allocation` string, required — The overall allocation across all groups
          - `unit_amount` string, required — The amount to charge for each unit outside of the allocation
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingDailyCreditAllowancePrice
        - `model_type` 'daily_credit_allowance', required — The pricing model type
        - `daily_credit_allowance_config` DailyCreditAllowanceConfig, required — Pricing model that gives a daily credit budget across one or more dimensional rates. Each event is rated in credits at a per-dimension `unit_amount`. Events are bucketed into days via an `event_day_property` set on the event (e.g. an ISO date string in the customer's timezone, supplied at ingest by the customer). Within each day the first `daily_allowance` credits are free; usage beyond that is charged in full. The allowance does not roll over. Use cases: shared daily AI-token budgets where different models have different credit costs.
          - `event_day_property` string, required — Event property whose value identifies the day bucket the event belongs to (e.g. 'event_day' set to an ISO date string in the customer's timezone). The allowance resets per distinct value of this property.
          - `dimensions` string[], required — One or two event property values to evaluate matrix groups by
          - `default_unit_amount` string, required — Default per-unit credit rate for any usage not bucketed into a specified matrix_value
          - `daily_allowance` string, required — Credits granted per day. Lose-it-or-use-it; does not roll over.
          - `matrix_values` DailyCreditAllowanceMatrixValue[], required — Per-dimension credit rates
            - `unit_amount` string, required — Credits charged per unit of usage matching the specified dimension_values
            - `dimension_values` string[], required — One or two matrix keys to filter usage to this value by. For example, ["model"] could be used to apply a different credit rate to each AI model.
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMeteredAllowancePrice
        - `model_type` 'metered_allowance', required — The pricing model type
        - `metered_allowance_config` MeteredAllowanceConfig, required — Charges a per-unit rate on consumption above an allowance whose size is itself metered from usage in the same period. Both quantities come from a single billable metric, partitioned by `grouping_key`. The line item shows two sub-lines under one parent: the gross consumption row and a (negative) allowance credit row. The parent line equals the net charge, never negative — so adjustments, tax, prepaid credits, and rev rec all behave like any other usage line. Use cases: free egress proportional to bytes stored; free outbound bandwidth proportional to compute hours; free messages proportional to seat count; free output tokens proportional to input tokens.
          - `grouping_key` string, required — Event property used to partition the metric into consumption and allowance quantities (e.g. 'event_name'). The metric is queried with this key and the two values below select which partition is which.
          - `consumption_grouping_value` string, required — The grouping_key value whose summed quantity represents consumption (e.g. 'download'). Charged at unit_amount.
          - `allowance_grouping_value` string, required — The grouping_key value whose summed quantity represents the allowance for this period (e.g. 'storage_snapshot' emitting 3 × avg storage). Capped at consumption — credit can never exceed actual usage.
          - `unit_amount` string, required — Per-unit price applied to gross consumption and to the allowance credit.
          - `consumption_display_name` string — Sub-line label for the gross consumption row (e.g. 'bytes gotten').
          - `allowance_display_name` string — Sub-line label for the credit row (e.g. 'Up to 3x free egress').
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingMinimumCompositePrice
        - `model_type` 'minimum_composite', required — The pricing model type
        - `minimum_composite_config` MinimumCompositeConfig, required — Configuration for minimum composite price
          - `minimum_amount` string, required — The minimum amount to apply
          - `prorated` boolean — If true, subtotals from this price are prorated based on the service period
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingPercentCompositePrice
        - `model_type` 'percent', required — The pricing model type
        - `percent_config` PercentCompositeConfig, required — Configuration for a percent composite price. Charges ``percent`` of the sum of upstream subtotals matched by this price's composite filters. Optional ``minimum_amount`` and ``maximum_amount`` clamp the computed amount — leave both null for a pure pass-through percentage. Canonical bounded use case — service charge of the form "monthly fee = greater of X% of usage and $A, capped at $B": PercentCompositeConfig( percent=Decimal("0.08"), minimum_amount=MonetaryAmount(Decimal("5000")), maximum_amount=MonetaryAmount(Decimal("50000")), ) upstream sum $0 → fee $5,000 (minimum_amount) upstream sum $50,000 → fee $5,000 (minimum_amount; 8% = $4K < minimum_amount) upstream sum $100,000 → fee $8,000 (within bounds) upstream sum $1,000,000 → fee $50,000 (maximum_amount)
          - `percent` number, required — Fraction of the component subtotals to charge (0 < percent <= 1).
          - `minimum_amount` string, nullable — Minimum amount to charge. If unset, the fee is bounded below by 0.
          - `maximum_amount` string, nullable — Maximum amount to charge. If unset, the fee has no upper bound.
          - `prorated` boolean — If true, the minimum_amount is prorated based on the service period. The maximum_amount is an absolute cap (never prorated), and the percent applied to upstream subtotals is never prorated either.
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
      - NewFloatingEventOutputPrice
        - `model_type` 'event_output', required — The pricing model type
        - `event_output_config` EventOutputConfig, required
          - `unit_rating_key` string, required — The key in the event data to extract the unit rate from.
          - `grouping_key` string, nullable — An optional key in the event data to group by (e.g., event ID). All events will also be grouped by their unit rate.
          - `default_unit_rate` string, nullable — If provided, this amount will be used as the unit rate when an event does not have a value for the `unit_rating_key`. If not provided, events missing a unit rate will be ignored.
        - `metadata` object, nullable — User-specified key/value pairs for the resource. Individual keys can be removed by setting the value to `null`, and the entire metadata mapping can be cleared by setting `metadata` to `null`.
        - `external_price_id` string, nullable — An alias for the price.
        - `name` string, required — The name of the price.
        - `dimensional_price_configuration` NewDimensionalPriceConfiguration
          - `dimensional_price_group_id` string, nullable — The id of the dimensional price group to include this price in
          - `external_dimensional_price_group_id` string, nullable — The external id of the dimensional price group to include this price in
          - `dimension_values` string[], required — The list of dimension values matching (in order) the dimensions of the price group
        - `license_type_id` string, nullable — The ID of the license type to associate with this price.
        - `billable_metric_id` string, nullable — The id of the billable metric for the price. Only needed if the price is usage-based.
        - `item_id` string, required — The id of the item the price will be associated with.
        - `billed_in_advance` boolean, nullable — If the Price represents a fixed cost, the price will be billed in-advance if this is true, and in-arrears if this is false.
        - `fixed_price_quantity` number, nullable — If the Price represents a fixed cost, this represents the quantity of units applied.
        - `invoice_grouping_key` string, nullable — The property used to group this price on an invoice
        - `cadence` 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom', required — The cadence to bill for this price on.
        - `billing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `invoicing_cycle_configuration` NewBillingCycleConfiguration
          - `duration` integer, required — The duration of the billing period.
          - `duration_unit` 'day' | 'month', required — The unit of billing period duration.
        - `conversion_rate` number, nullable — The per unit conversion rate of the price currency to the invoicing currency.
        - `conversion_rate_config` union
          - UnitConversionRateConfig
            - `conversion_rate_type` 'unit', required
            - `unit_config` ConversionRateUnitConfig, required
              - …
          - TieredConversionRateConfig
            - `conversion_rate_type` 'tiered', required
            - `tiered_config` ConversionRateTieredConfig, required
              - …
        - `currency` string, required — An ISO 4217 currency string for which this price is billed in.
    - `external_price_id` string, nullable — The external ID of a price to evaluate that exists in your Orb account.
    - `filter` string, nullable — A boolean [computed property](/extensibility/advanced-metrics#computed-properties) used to filter the underlying billable metric
    - `grouping_keys` string[] — Properties (or [computed properties](/extensibility/advanced-metrics#computed-properties)) used to group the underlying billable metric
    - `metric_parameter_overrides` object, nullable — Optional overrides for parameterized billable metric parameters. If the metric has parameter definitions and no overrides are provided, defaults will be used.

## Response `200`

OK

- EvaluateMultiplePriceResource
  - `data` EvaluatePriceResourceForMultiplePrice[], required
    - `price_groups` EvaluatePriceGroup[], required — The computed price groups associated with input price.
      - `grouping_values` union[], required — The values for the group in the order specified by `grouping_keys`
        - union
          - string
          - number
          - boolean
      - `quantity` number, required — The price's usage quantity for the group
      - `amount` string, required — The price's output for the group
    - `currency` string, required — The currency of the price
    - `price_id` string, nullable — The ID of the price
    - `external_price_id` string, nullable — The external ID of the price
    - `inline_price_index` integer, nullable — The index of the inline price

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `409` — Conflict
- `413` — Content Too Large
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/withorb/apis/api-reference.md) · [All operations](https://skmtc.dev/withorb/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withorb/api-reference/revisions/816dfe734e2e/schema)
