@@ -428,9 +428,6 @@ public required IReadOnlyList<MatrixScalingFactor> MatrixScalingFactors
428428 init { JsonModel . Set ( this . _rawData , "matrix_scaling_factors" , value ) ; }
429429 }
430430
431- /// <summary>
432- /// Tier pricing structure
433- /// </summary>
434431 public required IReadOnlyList < ScalableMatrixWithTieredPricingConfigTier > Tiers
435432 {
436433 get
@@ -511,27 +508,18 @@ IReadOnlyDictionary<string, JsonElement> rawData
511508[ JsonConverter ( typeof ( JsonModelConverter < MatrixScalingFactor , MatrixScalingFactorFromRaw > ) ) ]
512509public sealed record class MatrixScalingFactor : JsonModel
513510{
514- /// <summary>
515- /// First dimension value
516- /// </summary>
517511 public required string FirstDimensionValue
518512 {
519513 get { return JsonModel . GetNotNullClass < string > ( this . RawData , "first_dimension_value" ) ; }
520514 init { JsonModel . Set ( this . _rawData , "first_dimension_value" , value ) ; }
521515 }
522516
523- /// <summary>
524- /// Scaling factor
525- /// </summary>
526517 public required string ScalingFactor
527518 {
528519 get { return JsonModel . GetNotNullClass < string > ( this . RawData , "scaling_factor" ) ; }
529520 init { JsonModel . Set ( this . _rawData , "scaling_factor" , value ) ; }
530521 }
531522
532- /// <summary>
533- /// Second dimension value (optional)
534- /// </summary>
535523 public string ? SecondDimensionValue
536524 {
537525 get { return JsonModel . GetNullableClass < string > ( this . RawData , "second_dimension_value" ) ; }
@@ -591,18 +579,12 @@ public MatrixScalingFactor FromRawUnchecked(IReadOnlyDictionary<string, JsonElem
591579) ]
592580public sealed record class ScalableMatrixWithTieredPricingConfigTier : JsonModel
593581{
594- /// <summary>
595- /// Tier lower bound
596- /// </summary>
597582 public required string TierLowerBound
598583 {
599584 get { return JsonModel . GetNotNullClass < string > ( this . RawData , "tier_lower_bound" ) ; }
600585 init { JsonModel . Set ( this . _rawData , "tier_lower_bound" , value ) ; }
601586 }
602587
603- /// <summary>
604- /// Per unit amount
605- /// </summary>
606588 public required string UnitAmount
607589 {
608590 get { return JsonModel . GetNotNullClass < string > ( this . RawData , "unit_amount" ) ; }
0 commit comments