@@ -9916,6 +9916,12 @@ class ScalableMatrixWithUnitPricingConfig < Orb::Internal::Type::BaseModel
99169916 # @return [String]
99179917 required :unit_price , String
99189918
9919+ # @!attribute grouping_key
9920+ # The property used to group this price
9921+ #
9922+ # @return [String, nil]
9923+ optional :grouping_key , String , nil? : true
9924+
99199925 # @!attribute prorate
99209926 # If true, the unit price will be prorated to the billing period
99219927 #
@@ -9928,7 +9934,7 @@ class ScalableMatrixWithUnitPricingConfig < Orb::Internal::Type::BaseModel
99289934 # @return [String, nil]
99299935 optional :second_dimension , String , nil? : true
99309936
9931- # @!method initialize(first_dimension:, matrix_scaling_factors:, unit_price:, prorate: nil, second_dimension: nil)
9937+ # @!method initialize(first_dimension:, matrix_scaling_factors:, unit_price:, grouping_key: nil, prorate: nil, second_dimension: nil)
99329938 # Configuration for scalable_matrix_with_unit_pricing pricing
99339939 #
99349940 # @param first_dimension [String] Used to determine the unit rate
@@ -9937,6 +9943,8 @@ class ScalableMatrixWithUnitPricingConfig < Orb::Internal::Type::BaseModel
99379943 #
99389944 # @param unit_price [String] The final unit price to rate against the output of the matrix
99399945 #
9946+ # @param grouping_key [String, nil] The property used to group this price
9947+ #
99409948 # @param prorate [Boolean, nil] If true, the unit price will be prorated to the billing period
99419949 #
99429950 # @param second_dimension [String, nil] Used to determine the unit rate (optional)
0 commit comments