orb-billing 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/README.md +1 -1
- data/lib/orb/models/monetary_amount_discount_adjustment.rb +10 -1
- data/lib/orb/models/monetary_maximum_adjustment.rb +10 -1
- data/lib/orb/models/monetary_minimum_adjustment.rb +10 -1
- data/lib/orb/models/monetary_percentage_discount_adjustment.rb +10 -1
- data/lib/orb/models/monetary_usage_discount_adjustment.rb +10 -1
- data/lib/orb/models/plan_phase_amount_discount_adjustment.rb +10 -1
- data/lib/orb/models/plan_phase_maximum_adjustment.rb +10 -1
- data/lib/orb/models/plan_phase_minimum_adjustment.rb +10 -1
- data/lib/orb/models/plan_phase_percentage_discount_adjustment.rb +10 -1
- data/lib/orb/models/plan_phase_usage_discount_adjustment.rb +10 -1
- data/lib/orb/models/price.rb +280 -28
- data/lib/orb/version.rb +1 -1
- data/rbi/orb/models/monetary_amount_discount_adjustment.rbi +13 -3
- data/rbi/orb/models/monetary_maximum_adjustment.rbi +13 -3
- data/rbi/orb/models/monetary_minimum_adjustment.rbi +13 -3
- data/rbi/orb/models/monetary_percentage_discount_adjustment.rbi +13 -3
- data/rbi/orb/models/monetary_usage_discount_adjustment.rbi +10 -0
- data/rbi/orb/models/plan_phase_amount_discount_adjustment.rbi +13 -3
- data/rbi/orb/models/plan_phase_maximum_adjustment.rbi +13 -3
- data/rbi/orb/models/plan_phase_minimum_adjustment.rbi +13 -3
- data/rbi/orb/models/plan_phase_percentage_discount_adjustment.rbi +13 -3
- data/rbi/orb/models/plan_phase_usage_discount_adjustment.rbi +10 -0
- data/rbi/orb/models/price.rbi +280 -0
- data/sig/orb/models/monetary_amount_discount_adjustment.rbs +8 -3
- data/sig/orb/models/monetary_maximum_adjustment.rbs +8 -3
- data/sig/orb/models/monetary_minimum_adjustment.rbs +8 -3
- data/sig/orb/models/monetary_percentage_discount_adjustment.rbs +8 -3
- data/sig/orb/models/monetary_usage_discount_adjustment.rbs +5 -0
- data/sig/orb/models/plan_phase_amount_discount_adjustment.rbs +8 -3
- data/sig/orb/models/plan_phase_maximum_adjustment.rbs +8 -3
- data/sig/orb/models/plan_phase_minimum_adjustment.rbs +8 -3
- data/sig/orb/models/plan_phase_percentage_discount_adjustment.rbs +8 -3
- data/sig/orb/models/plan_phase_usage_discount_adjustment.rbs +5 -0
- data/sig/orb/models/price.rbs +140 -0
- metadata +2 -2
data/rbi/orb/models/price.rbi
CHANGED
@@ -164,6 +164,11 @@ module Orb
|
|
164
164
|
sig { returns(Orb::Price::Unit::PriceType::TaggedSymbol) }
|
165
165
|
attr_accessor :price_type
|
166
166
|
|
167
|
+
# The price id this price replaces. This price will take the place of the replaced
|
168
|
+
# price in plan version migrations.
|
169
|
+
sig { returns(T.nilable(String)) }
|
170
|
+
attr_accessor :replaces_price_id
|
171
|
+
|
167
172
|
sig { returns(Orb::UnitConfig) }
|
168
173
|
attr_reader :unit_config
|
169
174
|
|
@@ -220,6 +225,7 @@ module Orb
|
|
220
225
|
name: String,
|
221
226
|
plan_phase_order: T.nilable(Integer),
|
222
227
|
price_type: Orb::Price::Unit::PriceType::OrSymbol,
|
228
|
+
replaces_price_id: T.nilable(String),
|
223
229
|
unit_config: Orb::UnitConfig::OrHash,
|
224
230
|
dimensional_price_configuration:
|
225
231
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -253,6 +259,9 @@ module Orb
|
|
253
259
|
name:,
|
254
260
|
plan_phase_order:,
|
255
261
|
price_type:,
|
262
|
+
# The price id this price replaces. This price will take the place of the replaced
|
263
|
+
# price in plan version migrations.
|
264
|
+
replaces_price_id:,
|
256
265
|
unit_config:,
|
257
266
|
dimensional_price_configuration: nil,
|
258
267
|
model_type: :unit
|
@@ -287,6 +296,7 @@ module Orb
|
|
287
296
|
name: String,
|
288
297
|
plan_phase_order: T.nilable(Integer),
|
289
298
|
price_type: Orb::Price::Unit::PriceType::TaggedSymbol,
|
299
|
+
replaces_price_id: T.nilable(String),
|
290
300
|
unit_config: Orb::UnitConfig,
|
291
301
|
dimensional_price_configuration:
|
292
302
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -483,6 +493,11 @@ module Orb
|
|
483
493
|
sig { returns(Orb::Price::Package::PriceType::TaggedSymbol) }
|
484
494
|
attr_accessor :price_type
|
485
495
|
|
496
|
+
# The price id this price replaces. This price will take the place of the replaced
|
497
|
+
# price in plan version migrations.
|
498
|
+
sig { returns(T.nilable(String)) }
|
499
|
+
attr_accessor :replaces_price_id
|
500
|
+
|
486
501
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
487
502
|
attr_reader :dimensional_price_configuration
|
488
503
|
|
@@ -534,6 +549,7 @@ module Orb
|
|
534
549
|
package_config: Orb::PackageConfig::OrHash,
|
535
550
|
plan_phase_order: T.nilable(Integer),
|
536
551
|
price_type: Orb::Price::Package::PriceType::OrSymbol,
|
552
|
+
replaces_price_id: T.nilable(String),
|
537
553
|
dimensional_price_configuration:
|
538
554
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
539
555
|
model_type: Symbol
|
@@ -567,6 +583,9 @@ module Orb
|
|
567
583
|
package_config:,
|
568
584
|
plan_phase_order:,
|
569
585
|
price_type:,
|
586
|
+
# The price id this price replaces. This price will take the place of the replaced
|
587
|
+
# price in plan version migrations.
|
588
|
+
replaces_price_id:,
|
570
589
|
dimensional_price_configuration: nil,
|
571
590
|
model_type: :package
|
572
591
|
)
|
@@ -601,6 +620,7 @@ module Orb
|
|
601
620
|
package_config: Orb::PackageConfig,
|
602
621
|
plan_phase_order: T.nilable(Integer),
|
603
622
|
price_type: Orb::Price::Package::PriceType::TaggedSymbol,
|
623
|
+
replaces_price_id: T.nilable(String),
|
604
624
|
dimensional_price_configuration:
|
605
625
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
606
626
|
}
|
@@ -798,6 +818,11 @@ module Orb
|
|
798
818
|
sig { returns(Orb::Price::Matrix::PriceType::TaggedSymbol) }
|
799
819
|
attr_accessor :price_type
|
800
820
|
|
821
|
+
# The price id this price replaces. This price will take the place of the replaced
|
822
|
+
# price in plan version migrations.
|
823
|
+
sig { returns(T.nilable(String)) }
|
824
|
+
attr_accessor :replaces_price_id
|
825
|
+
|
801
826
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
802
827
|
attr_reader :dimensional_price_configuration
|
803
828
|
|
@@ -849,6 +874,7 @@ module Orb
|
|
849
874
|
name: String,
|
850
875
|
plan_phase_order: T.nilable(Integer),
|
851
876
|
price_type: Orb::Price::Matrix::PriceType::OrSymbol,
|
877
|
+
replaces_price_id: T.nilable(String),
|
852
878
|
dimensional_price_configuration:
|
853
879
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
854
880
|
model_type: Symbol
|
@@ -882,6 +908,9 @@ module Orb
|
|
882
908
|
name:,
|
883
909
|
plan_phase_order:,
|
884
910
|
price_type:,
|
911
|
+
# The price id this price replaces. This price will take the place of the replaced
|
912
|
+
# price in plan version migrations.
|
913
|
+
replaces_price_id:,
|
885
914
|
dimensional_price_configuration: nil,
|
886
915
|
model_type: :matrix
|
887
916
|
)
|
@@ -916,6 +945,7 @@ module Orb
|
|
916
945
|
name: String,
|
917
946
|
plan_phase_order: T.nilable(Integer),
|
918
947
|
price_type: Orb::Price::Matrix::PriceType::TaggedSymbol,
|
948
|
+
replaces_price_id: T.nilable(String),
|
919
949
|
dimensional_price_configuration:
|
920
950
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
921
951
|
}
|
@@ -1106,6 +1136,11 @@ module Orb
|
|
1106
1136
|
sig { returns(Orb::Price::Tiered::PriceType::TaggedSymbol) }
|
1107
1137
|
attr_accessor :price_type
|
1108
1138
|
|
1139
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1140
|
+
# price in plan version migrations.
|
1141
|
+
sig { returns(T.nilable(String)) }
|
1142
|
+
attr_accessor :replaces_price_id
|
1143
|
+
|
1109
1144
|
sig { returns(Orb::TieredConfig) }
|
1110
1145
|
attr_reader :tiered_config
|
1111
1146
|
|
@@ -1162,6 +1197,7 @@ module Orb
|
|
1162
1197
|
name: String,
|
1163
1198
|
plan_phase_order: T.nilable(Integer),
|
1164
1199
|
price_type: Orb::Price::Tiered::PriceType::OrSymbol,
|
1200
|
+
replaces_price_id: T.nilable(String),
|
1165
1201
|
tiered_config: Orb::TieredConfig::OrHash,
|
1166
1202
|
dimensional_price_configuration:
|
1167
1203
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -1195,6 +1231,9 @@ module Orb
|
|
1195
1231
|
name:,
|
1196
1232
|
plan_phase_order:,
|
1197
1233
|
price_type:,
|
1234
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1235
|
+
# price in plan version migrations.
|
1236
|
+
replaces_price_id:,
|
1198
1237
|
tiered_config:,
|
1199
1238
|
dimensional_price_configuration: nil,
|
1200
1239
|
model_type: :tiered
|
@@ -1229,6 +1268,7 @@ module Orb
|
|
1229
1268
|
name: String,
|
1230
1269
|
plan_phase_order: T.nilable(Integer),
|
1231
1270
|
price_type: Orb::Price::Tiered::PriceType::TaggedSymbol,
|
1271
|
+
replaces_price_id: T.nilable(String),
|
1232
1272
|
tiered_config: Orb::TieredConfig,
|
1233
1273
|
dimensional_price_configuration:
|
1234
1274
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -1422,6 +1462,11 @@ module Orb
|
|
1422
1462
|
sig { returns(Orb::Price::TieredBPS::PriceType::TaggedSymbol) }
|
1423
1463
|
attr_accessor :price_type
|
1424
1464
|
|
1465
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1466
|
+
# price in plan version migrations.
|
1467
|
+
sig { returns(T.nilable(String)) }
|
1468
|
+
attr_accessor :replaces_price_id
|
1469
|
+
|
1425
1470
|
sig { returns(Orb::TieredBPSConfig) }
|
1426
1471
|
attr_reader :tiered_bps_config
|
1427
1472
|
|
@@ -1478,6 +1523,7 @@ module Orb
|
|
1478
1523
|
name: String,
|
1479
1524
|
plan_phase_order: T.nilable(Integer),
|
1480
1525
|
price_type: Orb::Price::TieredBPS::PriceType::OrSymbol,
|
1526
|
+
replaces_price_id: T.nilable(String),
|
1481
1527
|
tiered_bps_config: Orb::TieredBPSConfig::OrHash,
|
1482
1528
|
dimensional_price_configuration:
|
1483
1529
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -1511,6 +1557,9 @@ module Orb
|
|
1511
1557
|
name:,
|
1512
1558
|
plan_phase_order:,
|
1513
1559
|
price_type:,
|
1560
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1561
|
+
# price in plan version migrations.
|
1562
|
+
replaces_price_id:,
|
1514
1563
|
tiered_bps_config:,
|
1515
1564
|
dimensional_price_configuration: nil,
|
1516
1565
|
model_type: :tiered_bps
|
@@ -1547,6 +1596,7 @@ module Orb
|
|
1547
1596
|
name: String,
|
1548
1597
|
plan_phase_order: T.nilable(Integer),
|
1549
1598
|
price_type: Orb::Price::TieredBPS::PriceType::TaggedSymbol,
|
1599
|
+
replaces_price_id: T.nilable(String),
|
1550
1600
|
tiered_bps_config: Orb::TieredBPSConfig,
|
1551
1601
|
dimensional_price_configuration:
|
1552
1602
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -1745,6 +1795,11 @@ module Orb
|
|
1745
1795
|
sig { returns(Orb::Price::BPS::PriceType::TaggedSymbol) }
|
1746
1796
|
attr_accessor :price_type
|
1747
1797
|
|
1798
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1799
|
+
# price in plan version migrations.
|
1800
|
+
sig { returns(T.nilable(String)) }
|
1801
|
+
attr_accessor :replaces_price_id
|
1802
|
+
|
1748
1803
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
1749
1804
|
attr_reader :dimensional_price_configuration
|
1750
1805
|
|
@@ -1796,6 +1851,7 @@ module Orb
|
|
1796
1851
|
name: String,
|
1797
1852
|
plan_phase_order: T.nilable(Integer),
|
1798
1853
|
price_type: Orb::Price::BPS::PriceType::OrSymbol,
|
1854
|
+
replaces_price_id: T.nilable(String),
|
1799
1855
|
dimensional_price_configuration:
|
1800
1856
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
1801
1857
|
model_type: Symbol
|
@@ -1829,6 +1885,9 @@ module Orb
|
|
1829
1885
|
name:,
|
1830
1886
|
plan_phase_order:,
|
1831
1887
|
price_type:,
|
1888
|
+
# The price id this price replaces. This price will take the place of the replaced
|
1889
|
+
# price in plan version migrations.
|
1890
|
+
replaces_price_id:,
|
1832
1891
|
dimensional_price_configuration: nil,
|
1833
1892
|
model_type: :bps
|
1834
1893
|
)
|
@@ -1863,6 +1922,7 @@ module Orb
|
|
1863
1922
|
name: String,
|
1864
1923
|
plan_phase_order: T.nilable(Integer),
|
1865
1924
|
price_type: Orb::Price::BPS::PriceType::TaggedSymbol,
|
1925
|
+
replaces_price_id: T.nilable(String),
|
1866
1926
|
dimensional_price_configuration:
|
1867
1927
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
1868
1928
|
}
|
@@ -2056,6 +2116,11 @@ module Orb
|
|
2056
2116
|
sig { returns(Orb::Price::BulkBPS::PriceType::TaggedSymbol) }
|
2057
2117
|
attr_accessor :price_type
|
2058
2118
|
|
2119
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2120
|
+
# price in plan version migrations.
|
2121
|
+
sig { returns(T.nilable(String)) }
|
2122
|
+
attr_accessor :replaces_price_id
|
2123
|
+
|
2059
2124
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
2060
2125
|
attr_reader :dimensional_price_configuration
|
2061
2126
|
|
@@ -2107,6 +2172,7 @@ module Orb
|
|
2107
2172
|
name: String,
|
2108
2173
|
plan_phase_order: T.nilable(Integer),
|
2109
2174
|
price_type: Orb::Price::BulkBPS::PriceType::OrSymbol,
|
2175
|
+
replaces_price_id: T.nilable(String),
|
2110
2176
|
dimensional_price_configuration:
|
2111
2177
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
2112
2178
|
model_type: Symbol
|
@@ -2140,6 +2206,9 @@ module Orb
|
|
2140
2206
|
name:,
|
2141
2207
|
plan_phase_order:,
|
2142
2208
|
price_type:,
|
2209
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2210
|
+
# price in plan version migrations.
|
2211
|
+
replaces_price_id:,
|
2143
2212
|
dimensional_price_configuration: nil,
|
2144
2213
|
model_type: :bulk_bps
|
2145
2214
|
)
|
@@ -2174,6 +2243,7 @@ module Orb
|
|
2174
2243
|
name: String,
|
2175
2244
|
plan_phase_order: T.nilable(Integer),
|
2176
2245
|
price_type: Orb::Price::BulkBPS::PriceType::TaggedSymbol,
|
2246
|
+
replaces_price_id: T.nilable(String),
|
2177
2247
|
dimensional_price_configuration:
|
2178
2248
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
2179
2249
|
}
|
@@ -2371,6 +2441,11 @@ module Orb
|
|
2371
2441
|
sig { returns(Orb::Price::Bulk::PriceType::TaggedSymbol) }
|
2372
2442
|
attr_accessor :price_type
|
2373
2443
|
|
2444
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2445
|
+
# price in plan version migrations.
|
2446
|
+
sig { returns(T.nilable(String)) }
|
2447
|
+
attr_accessor :replaces_price_id
|
2448
|
+
|
2374
2449
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
2375
2450
|
attr_reader :dimensional_price_configuration
|
2376
2451
|
|
@@ -2422,6 +2497,7 @@ module Orb
|
|
2422
2497
|
name: String,
|
2423
2498
|
plan_phase_order: T.nilable(Integer),
|
2424
2499
|
price_type: Orb::Price::Bulk::PriceType::OrSymbol,
|
2500
|
+
replaces_price_id: T.nilable(String),
|
2425
2501
|
dimensional_price_configuration:
|
2426
2502
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
2427
2503
|
model_type: Symbol
|
@@ -2455,6 +2531,9 @@ module Orb
|
|
2455
2531
|
name:,
|
2456
2532
|
plan_phase_order:,
|
2457
2533
|
price_type:,
|
2534
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2535
|
+
# price in plan version migrations.
|
2536
|
+
replaces_price_id:,
|
2458
2537
|
dimensional_price_configuration: nil,
|
2459
2538
|
model_type: :bulk
|
2460
2539
|
)
|
@@ -2489,6 +2568,7 @@ module Orb
|
|
2489
2568
|
name: String,
|
2490
2569
|
plan_phase_order: T.nilable(Integer),
|
2491
2570
|
price_type: Orb::Price::Bulk::PriceType::TaggedSymbol,
|
2571
|
+
replaces_price_id: T.nilable(String),
|
2492
2572
|
dimensional_price_configuration:
|
2493
2573
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
2494
2574
|
}
|
@@ -2684,6 +2764,11 @@ module Orb
|
|
2684
2764
|
end
|
2685
2765
|
attr_accessor :price_type
|
2686
2766
|
|
2767
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2768
|
+
# price in plan version migrations.
|
2769
|
+
sig { returns(T.nilable(String)) }
|
2770
|
+
attr_accessor :replaces_price_id
|
2771
|
+
|
2687
2772
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
2688
2773
|
attr_accessor :threshold_total_amount_config
|
2689
2774
|
|
@@ -2737,6 +2822,7 @@ module Orb
|
|
2737
2822
|
name: String,
|
2738
2823
|
plan_phase_order: T.nilable(Integer),
|
2739
2824
|
price_type: Orb::Price::ThresholdTotalAmount::PriceType::OrSymbol,
|
2825
|
+
replaces_price_id: T.nilable(String),
|
2740
2826
|
threshold_total_amount_config: T::Hash[Symbol, T.anything],
|
2741
2827
|
dimensional_price_configuration:
|
2742
2828
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -2770,6 +2856,9 @@ module Orb
|
|
2770
2856
|
name:,
|
2771
2857
|
plan_phase_order:,
|
2772
2858
|
price_type:,
|
2859
|
+
# The price id this price replaces. This price will take the place of the replaced
|
2860
|
+
# price in plan version migrations.
|
2861
|
+
replaces_price_id:,
|
2773
2862
|
threshold_total_amount_config:,
|
2774
2863
|
dimensional_price_configuration: nil,
|
2775
2864
|
model_type: :threshold_total_amount
|
@@ -2807,6 +2896,7 @@ module Orb
|
|
2807
2896
|
plan_phase_order: T.nilable(Integer),
|
2808
2897
|
price_type:
|
2809
2898
|
Orb::Price::ThresholdTotalAmount::PriceType::TaggedSymbol,
|
2899
|
+
replaces_price_id: T.nilable(String),
|
2810
2900
|
threshold_total_amount_config: T::Hash[Symbol, T.anything],
|
2811
2901
|
dimensional_price_configuration:
|
2812
2902
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -3038,6 +3128,11 @@ module Orb
|
|
3038
3128
|
sig { returns(Orb::Price::TieredPackage::PriceType::TaggedSymbol) }
|
3039
3129
|
attr_accessor :price_type
|
3040
3130
|
|
3131
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3132
|
+
# price in plan version migrations.
|
3133
|
+
sig { returns(T.nilable(String)) }
|
3134
|
+
attr_accessor :replaces_price_id
|
3135
|
+
|
3041
3136
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
3042
3137
|
attr_accessor :tiered_package_config
|
3043
3138
|
|
@@ -3091,6 +3186,7 @@ module Orb
|
|
3091
3186
|
name: String,
|
3092
3187
|
plan_phase_order: T.nilable(Integer),
|
3093
3188
|
price_type: Orb::Price::TieredPackage::PriceType::OrSymbol,
|
3189
|
+
replaces_price_id: T.nilable(String),
|
3094
3190
|
tiered_package_config: T::Hash[Symbol, T.anything],
|
3095
3191
|
dimensional_price_configuration:
|
3096
3192
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -3124,6 +3220,9 @@ module Orb
|
|
3124
3220
|
name:,
|
3125
3221
|
plan_phase_order:,
|
3126
3222
|
price_type:,
|
3223
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3224
|
+
# price in plan version migrations.
|
3225
|
+
replaces_price_id:,
|
3127
3226
|
tiered_package_config:,
|
3128
3227
|
dimensional_price_configuration: nil,
|
3129
3228
|
model_type: :tiered_package
|
@@ -3160,6 +3259,7 @@ module Orb
|
|
3160
3259
|
name: String,
|
3161
3260
|
plan_phase_order: T.nilable(Integer),
|
3162
3261
|
price_type: Orb::Price::TieredPackage::PriceType::TaggedSymbol,
|
3262
|
+
replaces_price_id: T.nilable(String),
|
3163
3263
|
tiered_package_config: T::Hash[Symbol, T.anything],
|
3164
3264
|
dimensional_price_configuration:
|
3165
3265
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -3373,6 +3473,11 @@ module Orb
|
|
3373
3473
|
sig { returns(Orb::Price::GroupedTiered::PriceType::TaggedSymbol) }
|
3374
3474
|
attr_accessor :price_type
|
3375
3475
|
|
3476
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3477
|
+
# price in plan version migrations.
|
3478
|
+
sig { returns(T.nilable(String)) }
|
3479
|
+
attr_accessor :replaces_price_id
|
3480
|
+
|
3376
3481
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
3377
3482
|
attr_reader :dimensional_price_configuration
|
3378
3483
|
|
@@ -3424,6 +3529,7 @@ module Orb
|
|
3424
3529
|
name: String,
|
3425
3530
|
plan_phase_order: T.nilable(Integer),
|
3426
3531
|
price_type: Orb::Price::GroupedTiered::PriceType::OrSymbol,
|
3532
|
+
replaces_price_id: T.nilable(String),
|
3427
3533
|
dimensional_price_configuration:
|
3428
3534
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
3429
3535
|
model_type: Symbol
|
@@ -3457,6 +3563,9 @@ module Orb
|
|
3457
3563
|
name:,
|
3458
3564
|
plan_phase_order:,
|
3459
3565
|
price_type:,
|
3566
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3567
|
+
# price in plan version migrations.
|
3568
|
+
replaces_price_id:,
|
3460
3569
|
dimensional_price_configuration: nil,
|
3461
3570
|
model_type: :grouped_tiered
|
3462
3571
|
)
|
@@ -3493,6 +3602,7 @@ module Orb
|
|
3493
3602
|
name: String,
|
3494
3603
|
plan_phase_order: T.nilable(Integer),
|
3495
3604
|
price_type: Orb::Price::GroupedTiered::PriceType::TaggedSymbol,
|
3605
|
+
replaces_price_id: T.nilable(String),
|
3496
3606
|
dimensional_price_configuration:
|
3497
3607
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
3498
3608
|
}
|
@@ -3704,6 +3814,11 @@ module Orb
|
|
3704
3814
|
sig { returns(Orb::Price::TieredWithMinimum::PriceType::TaggedSymbol) }
|
3705
3815
|
attr_accessor :price_type
|
3706
3816
|
|
3817
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3818
|
+
# price in plan version migrations.
|
3819
|
+
sig { returns(T.nilable(String)) }
|
3820
|
+
attr_accessor :replaces_price_id
|
3821
|
+
|
3707
3822
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
3708
3823
|
attr_accessor :tiered_with_minimum_config
|
3709
3824
|
|
@@ -3757,6 +3872,7 @@ module Orb
|
|
3757
3872
|
name: String,
|
3758
3873
|
plan_phase_order: T.nilable(Integer),
|
3759
3874
|
price_type: Orb::Price::TieredWithMinimum::PriceType::OrSymbol,
|
3875
|
+
replaces_price_id: T.nilable(String),
|
3760
3876
|
tiered_with_minimum_config: T::Hash[Symbol, T.anything],
|
3761
3877
|
dimensional_price_configuration:
|
3762
3878
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -3790,6 +3906,9 @@ module Orb
|
|
3790
3906
|
name:,
|
3791
3907
|
plan_phase_order:,
|
3792
3908
|
price_type:,
|
3909
|
+
# The price id this price replaces. This price will take the place of the replaced
|
3910
|
+
# price in plan version migrations.
|
3911
|
+
replaces_price_id:,
|
3793
3912
|
tiered_with_minimum_config:,
|
3794
3913
|
dimensional_price_configuration: nil,
|
3795
3914
|
model_type: :tiered_with_minimum
|
@@ -3827,6 +3946,7 @@ module Orb
|
|
3827
3946
|
plan_phase_order: T.nilable(Integer),
|
3828
3947
|
price_type:
|
3829
3948
|
Orb::Price::TieredWithMinimum::PriceType::TaggedSymbol,
|
3949
|
+
replaces_price_id: T.nilable(String),
|
3830
3950
|
tiered_with_minimum_config: T::Hash[Symbol, T.anything],
|
3831
3951
|
dimensional_price_configuration:
|
3832
3952
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -4056,6 +4176,11 @@ module Orb
|
|
4056
4176
|
end
|
4057
4177
|
attr_accessor :price_type
|
4058
4178
|
|
4179
|
+
# The price id this price replaces. This price will take the place of the replaced
|
4180
|
+
# price in plan version migrations.
|
4181
|
+
sig { returns(T.nilable(String)) }
|
4182
|
+
attr_accessor :replaces_price_id
|
4183
|
+
|
4059
4184
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
4060
4185
|
attr_accessor :tiered_package_with_minimum_config
|
4061
4186
|
|
@@ -4110,6 +4235,7 @@ module Orb
|
|
4110
4235
|
plan_phase_order: T.nilable(Integer),
|
4111
4236
|
price_type:
|
4112
4237
|
Orb::Price::TieredPackageWithMinimum::PriceType::OrSymbol,
|
4238
|
+
replaces_price_id: T.nilable(String),
|
4113
4239
|
tiered_package_with_minimum_config: T::Hash[Symbol, T.anything],
|
4114
4240
|
dimensional_price_configuration:
|
4115
4241
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -4143,6 +4269,9 @@ module Orb
|
|
4143
4269
|
name:,
|
4144
4270
|
plan_phase_order:,
|
4145
4271
|
price_type:,
|
4272
|
+
# The price id this price replaces. This price will take the place of the replaced
|
4273
|
+
# price in plan version migrations.
|
4274
|
+
replaces_price_id:,
|
4146
4275
|
tiered_package_with_minimum_config:,
|
4147
4276
|
dimensional_price_configuration: nil,
|
4148
4277
|
model_type: :tiered_package_with_minimum
|
@@ -4181,6 +4310,7 @@ module Orb
|
|
4181
4310
|
plan_phase_order: T.nilable(Integer),
|
4182
4311
|
price_type:
|
4183
4312
|
Orb::Price::TieredPackageWithMinimum::PriceType::TaggedSymbol,
|
4313
|
+
replaces_price_id: T.nilable(String),
|
4184
4314
|
tiered_package_with_minimum_config: T::Hash[Symbol, T.anything],
|
4185
4315
|
dimensional_price_configuration:
|
4186
4316
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -4423,6 +4553,11 @@ module Orb
|
|
4423
4553
|
end
|
4424
4554
|
attr_accessor :price_type
|
4425
4555
|
|
4556
|
+
# The price id this price replaces. This price will take the place of the replaced
|
4557
|
+
# price in plan version migrations.
|
4558
|
+
sig { returns(T.nilable(String)) }
|
4559
|
+
attr_accessor :replaces_price_id
|
4560
|
+
|
4426
4561
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
4427
4562
|
attr_reader :dimensional_price_configuration
|
4428
4563
|
|
@@ -4474,6 +4609,7 @@ module Orb
|
|
4474
4609
|
package_with_allocation_config: T::Hash[Symbol, T.anything],
|
4475
4610
|
plan_phase_order: T.nilable(Integer),
|
4476
4611
|
price_type: Orb::Price::PackageWithAllocation::PriceType::OrSymbol,
|
4612
|
+
replaces_price_id: T.nilable(String),
|
4477
4613
|
dimensional_price_configuration:
|
4478
4614
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
4479
4615
|
model_type: Symbol
|
@@ -4507,6 +4643,9 @@ module Orb
|
|
4507
4643
|
package_with_allocation_config:,
|
4508
4644
|
plan_phase_order:,
|
4509
4645
|
price_type:,
|
4646
|
+
# The price id this price replaces. This price will take the place of the replaced
|
4647
|
+
# price in plan version migrations.
|
4648
|
+
replaces_price_id:,
|
4510
4649
|
dimensional_price_configuration: nil,
|
4511
4650
|
model_type: :package_with_allocation
|
4512
4651
|
)
|
@@ -4544,6 +4683,7 @@ module Orb
|
|
4544
4683
|
plan_phase_order: T.nilable(Integer),
|
4545
4684
|
price_type:
|
4546
4685
|
Orb::Price::PackageWithAllocation::PriceType::TaggedSymbol,
|
4686
|
+
replaces_price_id: T.nilable(String),
|
4547
4687
|
dimensional_price_configuration:
|
4548
4688
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
4549
4689
|
}
|
@@ -4776,6 +4916,11 @@ module Orb
|
|
4776
4916
|
sig { returns(Orb::Price::UnitWithPercent::PriceType::TaggedSymbol) }
|
4777
4917
|
attr_accessor :price_type
|
4778
4918
|
|
4919
|
+
# The price id this price replaces. This price will take the place of the replaced
|
4920
|
+
# price in plan version migrations.
|
4921
|
+
sig { returns(T.nilable(String)) }
|
4922
|
+
attr_accessor :replaces_price_id
|
4923
|
+
|
4779
4924
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
4780
4925
|
attr_accessor :unit_with_percent_config
|
4781
4926
|
|
@@ -4829,6 +4974,7 @@ module Orb
|
|
4829
4974
|
name: String,
|
4830
4975
|
plan_phase_order: T.nilable(Integer),
|
4831
4976
|
price_type: Orb::Price::UnitWithPercent::PriceType::OrSymbol,
|
4977
|
+
replaces_price_id: T.nilable(String),
|
4832
4978
|
unit_with_percent_config: T::Hash[Symbol, T.anything],
|
4833
4979
|
dimensional_price_configuration:
|
4834
4980
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -4862,6 +5008,9 @@ module Orb
|
|
4862
5008
|
name:,
|
4863
5009
|
plan_phase_order:,
|
4864
5010
|
price_type:,
|
5011
|
+
# The price id this price replaces. This price will take the place of the replaced
|
5012
|
+
# price in plan version migrations.
|
5013
|
+
replaces_price_id:,
|
4865
5014
|
unit_with_percent_config:,
|
4866
5015
|
dimensional_price_configuration: nil,
|
4867
5016
|
model_type: :unit_with_percent
|
@@ -4898,6 +5047,7 @@ module Orb
|
|
4898
5047
|
name: String,
|
4899
5048
|
plan_phase_order: T.nilable(Integer),
|
4900
5049
|
price_type: Orb::Price::UnitWithPercent::PriceType::TaggedSymbol,
|
5050
|
+
replaces_price_id: T.nilable(String),
|
4901
5051
|
unit_with_percent_config: T::Hash[Symbol, T.anything],
|
4902
5052
|
dimensional_price_configuration:
|
4903
5053
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -5128,6 +5278,11 @@ module Orb
|
|
5128
5278
|
end
|
5129
5279
|
attr_accessor :price_type
|
5130
5280
|
|
5281
|
+
# The price id this price replaces. This price will take the place of the replaced
|
5282
|
+
# price in plan version migrations.
|
5283
|
+
sig { returns(T.nilable(String)) }
|
5284
|
+
attr_accessor :replaces_price_id
|
5285
|
+
|
5131
5286
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
5132
5287
|
attr_reader :dimensional_price_configuration
|
5133
5288
|
|
@@ -5180,6 +5335,7 @@ module Orb
|
|
5180
5335
|
name: String,
|
5181
5336
|
plan_phase_order: T.nilable(Integer),
|
5182
5337
|
price_type: Orb::Price::MatrixWithAllocation::PriceType::OrSymbol,
|
5338
|
+
replaces_price_id: T.nilable(String),
|
5183
5339
|
dimensional_price_configuration:
|
5184
5340
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
5185
5341
|
model_type: Symbol
|
@@ -5213,6 +5369,9 @@ module Orb
|
|
5213
5369
|
name:,
|
5214
5370
|
plan_phase_order:,
|
5215
5371
|
price_type:,
|
5372
|
+
# The price id this price replaces. This price will take the place of the replaced
|
5373
|
+
# price in plan version migrations.
|
5374
|
+
replaces_price_id:,
|
5216
5375
|
dimensional_price_configuration: nil,
|
5217
5376
|
model_type: :matrix_with_allocation
|
5218
5377
|
)
|
@@ -5250,6 +5409,7 @@ module Orb
|
|
5250
5409
|
plan_phase_order: T.nilable(Integer),
|
5251
5410
|
price_type:
|
5252
5411
|
Orb::Price::MatrixWithAllocation::PriceType::TaggedSymbol,
|
5412
|
+
replaces_price_id: T.nilable(String),
|
5253
5413
|
dimensional_price_configuration:
|
5254
5414
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
5255
5415
|
}
|
@@ -5484,6 +5644,11 @@ module Orb
|
|
5484
5644
|
end
|
5485
5645
|
attr_accessor :price_type
|
5486
5646
|
|
5647
|
+
# The price id this price replaces. This price will take the place of the replaced
|
5648
|
+
# price in plan version migrations.
|
5649
|
+
sig { returns(T.nilable(String)) }
|
5650
|
+
attr_accessor :replaces_price_id
|
5651
|
+
|
5487
5652
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
5488
5653
|
attr_accessor :tiered_with_proration_config
|
5489
5654
|
|
@@ -5537,6 +5702,7 @@ module Orb
|
|
5537
5702
|
name: String,
|
5538
5703
|
plan_phase_order: T.nilable(Integer),
|
5539
5704
|
price_type: Orb::Price::TieredWithProration::PriceType::OrSymbol,
|
5705
|
+
replaces_price_id: T.nilable(String),
|
5540
5706
|
tiered_with_proration_config: T::Hash[Symbol, T.anything],
|
5541
5707
|
dimensional_price_configuration:
|
5542
5708
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -5570,6 +5736,9 @@ module Orb
|
|
5570
5736
|
name:,
|
5571
5737
|
plan_phase_order:,
|
5572
5738
|
price_type:,
|
5739
|
+
# The price id this price replaces. This price will take the place of the replaced
|
5740
|
+
# price in plan version migrations.
|
5741
|
+
replaces_price_id:,
|
5573
5742
|
tiered_with_proration_config:,
|
5574
5743
|
dimensional_price_configuration: nil,
|
5575
5744
|
model_type: :tiered_with_proration
|
@@ -5607,6 +5776,7 @@ module Orb
|
|
5607
5776
|
plan_phase_order: T.nilable(Integer),
|
5608
5777
|
price_type:
|
5609
5778
|
Orb::Price::TieredWithProration::PriceType::TaggedSymbol,
|
5779
|
+
replaces_price_id: T.nilable(String),
|
5610
5780
|
tiered_with_proration_config: T::Hash[Symbol, T.anything],
|
5611
5781
|
dimensional_price_configuration:
|
5612
5782
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -5838,6 +6008,11 @@ module Orb
|
|
5838
6008
|
sig { returns(Orb::Price::UnitWithProration::PriceType::TaggedSymbol) }
|
5839
6009
|
attr_accessor :price_type
|
5840
6010
|
|
6011
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6012
|
+
# price in plan version migrations.
|
6013
|
+
sig { returns(T.nilable(String)) }
|
6014
|
+
attr_accessor :replaces_price_id
|
6015
|
+
|
5841
6016
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
5842
6017
|
attr_accessor :unit_with_proration_config
|
5843
6018
|
|
@@ -5891,6 +6066,7 @@ module Orb
|
|
5891
6066
|
name: String,
|
5892
6067
|
plan_phase_order: T.nilable(Integer),
|
5893
6068
|
price_type: Orb::Price::UnitWithProration::PriceType::OrSymbol,
|
6069
|
+
replaces_price_id: T.nilable(String),
|
5894
6070
|
unit_with_proration_config: T::Hash[Symbol, T.anything],
|
5895
6071
|
dimensional_price_configuration:
|
5896
6072
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
@@ -5924,6 +6100,9 @@ module Orb
|
|
5924
6100
|
name:,
|
5925
6101
|
plan_phase_order:,
|
5926
6102
|
price_type:,
|
6103
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6104
|
+
# price in plan version migrations.
|
6105
|
+
replaces_price_id:,
|
5927
6106
|
unit_with_proration_config:,
|
5928
6107
|
dimensional_price_configuration: nil,
|
5929
6108
|
model_type: :unit_with_proration
|
@@ -5961,6 +6140,7 @@ module Orb
|
|
5961
6140
|
plan_phase_order: T.nilable(Integer),
|
5962
6141
|
price_type:
|
5963
6142
|
Orb::Price::UnitWithProration::PriceType::TaggedSymbol,
|
6143
|
+
replaces_price_id: T.nilable(String),
|
5964
6144
|
unit_with_proration_config: T::Hash[Symbol, T.anything],
|
5965
6145
|
dimensional_price_configuration:
|
5966
6146
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
@@ -6189,6 +6369,11 @@ module Orb
|
|
6189
6369
|
sig { returns(Orb::Price::GroupedAllocation::PriceType::TaggedSymbol) }
|
6190
6370
|
attr_accessor :price_type
|
6191
6371
|
|
6372
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6373
|
+
# price in plan version migrations.
|
6374
|
+
sig { returns(T.nilable(String)) }
|
6375
|
+
attr_accessor :replaces_price_id
|
6376
|
+
|
6192
6377
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
6193
6378
|
attr_reader :dimensional_price_configuration
|
6194
6379
|
|
@@ -6240,6 +6425,7 @@ module Orb
|
|
6240
6425
|
name: String,
|
6241
6426
|
plan_phase_order: T.nilable(Integer),
|
6242
6427
|
price_type: Orb::Price::GroupedAllocation::PriceType::OrSymbol,
|
6428
|
+
replaces_price_id: T.nilable(String),
|
6243
6429
|
dimensional_price_configuration:
|
6244
6430
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
6245
6431
|
model_type: Symbol
|
@@ -6273,6 +6459,9 @@ module Orb
|
|
6273
6459
|
name:,
|
6274
6460
|
plan_phase_order:,
|
6275
6461
|
price_type:,
|
6462
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6463
|
+
# price in plan version migrations.
|
6464
|
+
replaces_price_id:,
|
6276
6465
|
dimensional_price_configuration: nil,
|
6277
6466
|
model_type: :grouped_allocation
|
6278
6467
|
)
|
@@ -6310,6 +6499,7 @@ module Orb
|
|
6310
6499
|
plan_phase_order: T.nilable(Integer),
|
6311
6500
|
price_type:
|
6312
6501
|
Orb::Price::GroupedAllocation::PriceType::TaggedSymbol,
|
6502
|
+
replaces_price_id: T.nilable(String),
|
6313
6503
|
dimensional_price_configuration:
|
6314
6504
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
6315
6505
|
}
|
@@ -6546,6 +6736,11 @@ module Orb
|
|
6546
6736
|
end
|
6547
6737
|
attr_accessor :price_type
|
6548
6738
|
|
6739
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6740
|
+
# price in plan version migrations.
|
6741
|
+
sig { returns(T.nilable(String)) }
|
6742
|
+
attr_accessor :replaces_price_id
|
6743
|
+
|
6549
6744
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
6550
6745
|
attr_reader :dimensional_price_configuration
|
6551
6746
|
|
@@ -6598,6 +6793,7 @@ module Orb
|
|
6598
6793
|
plan_phase_order: T.nilable(Integer),
|
6599
6794
|
price_type:
|
6600
6795
|
Orb::Price::GroupedWithProratedMinimum::PriceType::OrSymbol,
|
6796
|
+
replaces_price_id: T.nilable(String),
|
6601
6797
|
dimensional_price_configuration:
|
6602
6798
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
6603
6799
|
model_type: Symbol
|
@@ -6631,6 +6827,9 @@ module Orb
|
|
6631
6827
|
name:,
|
6632
6828
|
plan_phase_order:,
|
6633
6829
|
price_type:,
|
6830
|
+
# The price id this price replaces. This price will take the place of the replaced
|
6831
|
+
# price in plan version migrations.
|
6832
|
+
replaces_price_id:,
|
6634
6833
|
dimensional_price_configuration: nil,
|
6635
6834
|
model_type: :grouped_with_prorated_minimum
|
6636
6835
|
)
|
@@ -6669,6 +6868,7 @@ module Orb
|
|
6669
6868
|
plan_phase_order: T.nilable(Integer),
|
6670
6869
|
price_type:
|
6671
6870
|
Orb::Price::GroupedWithProratedMinimum::PriceType::TaggedSymbol,
|
6871
|
+
replaces_price_id: T.nilable(String),
|
6672
6872
|
dimensional_price_configuration:
|
6673
6873
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
6674
6874
|
}
|
@@ -6912,6 +7112,11 @@ module Orb
|
|
6912
7112
|
end
|
6913
7113
|
attr_accessor :price_type
|
6914
7114
|
|
7115
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7116
|
+
# price in plan version migrations.
|
7117
|
+
sig { returns(T.nilable(String)) }
|
7118
|
+
attr_accessor :replaces_price_id
|
7119
|
+
|
6915
7120
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
6916
7121
|
attr_reader :dimensional_price_configuration
|
6917
7122
|
|
@@ -6964,6 +7169,7 @@ module Orb
|
|
6964
7169
|
plan_phase_order: T.nilable(Integer),
|
6965
7170
|
price_type:
|
6966
7171
|
Orb::Price::GroupedWithMeteredMinimum::PriceType::OrSymbol,
|
7172
|
+
replaces_price_id: T.nilable(String),
|
6967
7173
|
dimensional_price_configuration:
|
6968
7174
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
6969
7175
|
model_type: Symbol
|
@@ -6997,6 +7203,9 @@ module Orb
|
|
6997
7203
|
name:,
|
6998
7204
|
plan_phase_order:,
|
6999
7205
|
price_type:,
|
7206
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7207
|
+
# price in plan version migrations.
|
7208
|
+
replaces_price_id:,
|
7000
7209
|
dimensional_price_configuration: nil,
|
7001
7210
|
model_type: :grouped_with_metered_minimum
|
7002
7211
|
)
|
@@ -7035,6 +7244,7 @@ module Orb
|
|
7035
7244
|
plan_phase_order: T.nilable(Integer),
|
7036
7245
|
price_type:
|
7037
7246
|
Orb::Price::GroupedWithMeteredMinimum::PriceType::TaggedSymbol,
|
7247
|
+
replaces_price_id: T.nilable(String),
|
7038
7248
|
dimensional_price_configuration:
|
7039
7249
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
7040
7250
|
}
|
@@ -7276,6 +7486,11 @@ module Orb
|
|
7276
7486
|
end
|
7277
7487
|
attr_accessor :price_type
|
7278
7488
|
|
7489
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7490
|
+
# price in plan version migrations.
|
7491
|
+
sig { returns(T.nilable(String)) }
|
7492
|
+
attr_accessor :replaces_price_id
|
7493
|
+
|
7279
7494
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
7280
7495
|
attr_reader :dimensional_price_configuration
|
7281
7496
|
|
@@ -7327,6 +7542,7 @@ module Orb
|
|
7327
7542
|
name: String,
|
7328
7543
|
plan_phase_order: T.nilable(Integer),
|
7329
7544
|
price_type: Orb::Price::MatrixWithDisplayName::PriceType::OrSymbol,
|
7545
|
+
replaces_price_id: T.nilable(String),
|
7330
7546
|
dimensional_price_configuration:
|
7331
7547
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
7332
7548
|
model_type: Symbol
|
@@ -7360,6 +7576,9 @@ module Orb
|
|
7360
7576
|
name:,
|
7361
7577
|
plan_phase_order:,
|
7362
7578
|
price_type:,
|
7579
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7580
|
+
# price in plan version migrations.
|
7581
|
+
replaces_price_id:,
|
7363
7582
|
dimensional_price_configuration: nil,
|
7364
7583
|
model_type: :matrix_with_display_name
|
7365
7584
|
)
|
@@ -7397,6 +7616,7 @@ module Orb
|
|
7397
7616
|
plan_phase_order: T.nilable(Integer),
|
7398
7617
|
price_type:
|
7399
7618
|
Orb::Price::MatrixWithDisplayName::PriceType::TaggedSymbol,
|
7619
|
+
replaces_price_id: T.nilable(String),
|
7400
7620
|
dimensional_price_configuration:
|
7401
7621
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
7402
7622
|
}
|
@@ -7632,6 +7852,11 @@ module Orb
|
|
7632
7852
|
sig { returns(Orb::Price::BulkWithProration::PriceType::TaggedSymbol) }
|
7633
7853
|
attr_accessor :price_type
|
7634
7854
|
|
7855
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7856
|
+
# price in plan version migrations.
|
7857
|
+
sig { returns(T.nilable(String)) }
|
7858
|
+
attr_accessor :replaces_price_id
|
7859
|
+
|
7635
7860
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
7636
7861
|
attr_reader :dimensional_price_configuration
|
7637
7862
|
|
@@ -7683,6 +7908,7 @@ module Orb
|
|
7683
7908
|
name: String,
|
7684
7909
|
plan_phase_order: T.nilable(Integer),
|
7685
7910
|
price_type: Orb::Price::BulkWithProration::PriceType::OrSymbol,
|
7911
|
+
replaces_price_id: T.nilable(String),
|
7686
7912
|
dimensional_price_configuration:
|
7687
7913
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
7688
7914
|
model_type: Symbol
|
@@ -7716,6 +7942,9 @@ module Orb
|
|
7716
7942
|
name:,
|
7717
7943
|
plan_phase_order:,
|
7718
7944
|
price_type:,
|
7945
|
+
# The price id this price replaces. This price will take the place of the replaced
|
7946
|
+
# price in plan version migrations.
|
7947
|
+
replaces_price_id:,
|
7719
7948
|
dimensional_price_configuration: nil,
|
7720
7949
|
model_type: :bulk_with_proration
|
7721
7950
|
)
|
@@ -7753,6 +7982,7 @@ module Orb
|
|
7753
7982
|
plan_phase_order: T.nilable(Integer),
|
7754
7983
|
price_type:
|
7755
7984
|
Orb::Price::BulkWithProration::PriceType::TaggedSymbol,
|
7985
|
+
replaces_price_id: T.nilable(String),
|
7756
7986
|
dimensional_price_configuration:
|
7757
7987
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
7758
7988
|
}
|
@@ -7982,6 +8212,11 @@ module Orb
|
|
7982
8212
|
end
|
7983
8213
|
attr_accessor :price_type
|
7984
8214
|
|
8215
|
+
# The price id this price replaces. This price will take the place of the replaced
|
8216
|
+
# price in plan version migrations.
|
8217
|
+
sig { returns(T.nilable(String)) }
|
8218
|
+
attr_accessor :replaces_price_id
|
8219
|
+
|
7985
8220
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
7986
8221
|
attr_reader :dimensional_price_configuration
|
7987
8222
|
|
@@ -8033,6 +8268,7 @@ module Orb
|
|
8033
8268
|
name: String,
|
8034
8269
|
plan_phase_order: T.nilable(Integer),
|
8035
8270
|
price_type: Orb::Price::GroupedTieredPackage::PriceType::OrSymbol,
|
8271
|
+
replaces_price_id: T.nilable(String),
|
8036
8272
|
dimensional_price_configuration:
|
8037
8273
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
8038
8274
|
model_type: Symbol
|
@@ -8066,6 +8302,9 @@ module Orb
|
|
8066
8302
|
name:,
|
8067
8303
|
plan_phase_order:,
|
8068
8304
|
price_type:,
|
8305
|
+
# The price id this price replaces. This price will take the place of the replaced
|
8306
|
+
# price in plan version migrations.
|
8307
|
+
replaces_price_id:,
|
8069
8308
|
dimensional_price_configuration: nil,
|
8070
8309
|
model_type: :grouped_tiered_package
|
8071
8310
|
)
|
@@ -8103,6 +8342,7 @@ module Orb
|
|
8103
8342
|
plan_phase_order: T.nilable(Integer),
|
8104
8343
|
price_type:
|
8105
8344
|
Orb::Price::GroupedTieredPackage::PriceType::TaggedSymbol,
|
8345
|
+
replaces_price_id: T.nilable(String),
|
8106
8346
|
dimensional_price_configuration:
|
8107
8347
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
8108
8348
|
}
|
@@ -8342,6 +8582,11 @@ module Orb
|
|
8342
8582
|
end
|
8343
8583
|
attr_accessor :price_type
|
8344
8584
|
|
8585
|
+
# The price id this price replaces. This price will take the place of the replaced
|
8586
|
+
# price in plan version migrations.
|
8587
|
+
sig { returns(T.nilable(String)) }
|
8588
|
+
attr_accessor :replaces_price_id
|
8589
|
+
|
8345
8590
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
8346
8591
|
attr_reader :dimensional_price_configuration
|
8347
8592
|
|
@@ -8393,6 +8638,7 @@ module Orb
|
|
8393
8638
|
name: String,
|
8394
8639
|
plan_phase_order: T.nilable(Integer),
|
8395
8640
|
price_type: Orb::Price::MaxGroupTieredPackage::PriceType::OrSymbol,
|
8641
|
+
replaces_price_id: T.nilable(String),
|
8396
8642
|
dimensional_price_configuration:
|
8397
8643
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
8398
8644
|
model_type: Symbol
|
@@ -8426,6 +8672,9 @@ module Orb
|
|
8426
8672
|
name:,
|
8427
8673
|
plan_phase_order:,
|
8428
8674
|
price_type:,
|
8675
|
+
# The price id this price replaces. This price will take the place of the replaced
|
8676
|
+
# price in plan version migrations.
|
8677
|
+
replaces_price_id:,
|
8429
8678
|
dimensional_price_configuration: nil,
|
8430
8679
|
model_type: :max_group_tiered_package
|
8431
8680
|
)
|
@@ -8463,6 +8712,7 @@ module Orb
|
|
8463
8712
|
plan_phase_order: T.nilable(Integer),
|
8464
8713
|
price_type:
|
8465
8714
|
Orb::Price::MaxGroupTieredPackage::PriceType::TaggedSymbol,
|
8715
|
+
replaces_price_id: T.nilable(String),
|
8466
8716
|
dimensional_price_configuration:
|
8467
8717
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
8468
8718
|
}
|
@@ -8706,6 +8956,11 @@ module Orb
|
|
8706
8956
|
end
|
8707
8957
|
attr_accessor :price_type
|
8708
8958
|
|
8959
|
+
# The price id this price replaces. This price will take the place of the replaced
|
8960
|
+
# price in plan version migrations.
|
8961
|
+
sig { returns(T.nilable(String)) }
|
8962
|
+
attr_accessor :replaces_price_id
|
8963
|
+
|
8709
8964
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
8710
8965
|
attr_accessor :scalable_matrix_with_unit_pricing_config
|
8711
8966
|
|
@@ -8761,6 +9016,7 @@ module Orb
|
|
8761
9016
|
plan_phase_order: T.nilable(Integer),
|
8762
9017
|
price_type:
|
8763
9018
|
Orb::Price::ScalableMatrixWithUnitPricing::PriceType::OrSymbol,
|
9019
|
+
replaces_price_id: T.nilable(String),
|
8764
9020
|
scalable_matrix_with_unit_pricing_config:
|
8765
9021
|
T::Hash[Symbol, T.anything],
|
8766
9022
|
dimensional_price_configuration:
|
@@ -8795,6 +9051,9 @@ module Orb
|
|
8795
9051
|
name:,
|
8796
9052
|
plan_phase_order:,
|
8797
9053
|
price_type:,
|
9054
|
+
# The price id this price replaces. This price will take the place of the replaced
|
9055
|
+
# price in plan version migrations.
|
9056
|
+
replaces_price_id:,
|
8798
9057
|
scalable_matrix_with_unit_pricing_config:,
|
8799
9058
|
dimensional_price_configuration: nil,
|
8800
9059
|
model_type: :scalable_matrix_with_unit_pricing
|
@@ -8833,6 +9092,7 @@ module Orb
|
|
8833
9092
|
plan_phase_order: T.nilable(Integer),
|
8834
9093
|
price_type:
|
8835
9094
|
Orb::Price::ScalableMatrixWithUnitPricing::PriceType::TaggedSymbol,
|
9095
|
+
replaces_price_id: T.nilable(String),
|
8836
9096
|
scalable_matrix_with_unit_pricing_config:
|
8837
9097
|
T::Hash[Symbol, T.anything],
|
8838
9098
|
dimensional_price_configuration:
|
@@ -9083,6 +9343,11 @@ module Orb
|
|
9083
9343
|
end
|
9084
9344
|
attr_accessor :price_type
|
9085
9345
|
|
9346
|
+
# The price id this price replaces. This price will take the place of the replaced
|
9347
|
+
# price in plan version migrations.
|
9348
|
+
sig { returns(T.nilable(String)) }
|
9349
|
+
attr_accessor :replaces_price_id
|
9350
|
+
|
9086
9351
|
sig { returns(T::Hash[Symbol, T.anything]) }
|
9087
9352
|
attr_accessor :scalable_matrix_with_tiered_pricing_config
|
9088
9353
|
|
@@ -9138,6 +9403,7 @@ module Orb
|
|
9138
9403
|
plan_phase_order: T.nilable(Integer),
|
9139
9404
|
price_type:
|
9140
9405
|
Orb::Price::ScalableMatrixWithTieredPricing::PriceType::OrSymbol,
|
9406
|
+
replaces_price_id: T.nilable(String),
|
9141
9407
|
scalable_matrix_with_tiered_pricing_config:
|
9142
9408
|
T::Hash[Symbol, T.anything],
|
9143
9409
|
dimensional_price_configuration:
|
@@ -9172,6 +9438,9 @@ module Orb
|
|
9172
9438
|
name:,
|
9173
9439
|
plan_phase_order:,
|
9174
9440
|
price_type:,
|
9441
|
+
# The price id this price replaces. This price will take the place of the replaced
|
9442
|
+
# price in plan version migrations.
|
9443
|
+
replaces_price_id:,
|
9175
9444
|
scalable_matrix_with_tiered_pricing_config:,
|
9176
9445
|
dimensional_price_configuration: nil,
|
9177
9446
|
model_type: :scalable_matrix_with_tiered_pricing
|
@@ -9210,6 +9479,7 @@ module Orb
|
|
9210
9479
|
plan_phase_order: T.nilable(Integer),
|
9211
9480
|
price_type:
|
9212
9481
|
Orb::Price::ScalableMatrixWithTieredPricing::PriceType::TaggedSymbol,
|
9482
|
+
replaces_price_id: T.nilable(String),
|
9213
9483
|
scalable_matrix_with_tiered_pricing_config:
|
9214
9484
|
T::Hash[Symbol, T.anything],
|
9215
9485
|
dimensional_price_configuration:
|
@@ -9459,6 +9729,11 @@ module Orb
|
|
9459
9729
|
end
|
9460
9730
|
attr_accessor :price_type
|
9461
9731
|
|
9732
|
+
# The price id this price replaces. This price will take the place of the replaced
|
9733
|
+
# price in plan version migrations.
|
9734
|
+
sig { returns(T.nilable(String)) }
|
9735
|
+
attr_accessor :replaces_price_id
|
9736
|
+
|
9462
9737
|
sig { returns(T.nilable(Orb::DimensionalPriceConfiguration)) }
|
9463
9738
|
attr_reader :dimensional_price_configuration
|
9464
9739
|
|
@@ -9510,6 +9785,7 @@ module Orb
|
|
9510
9785
|
name: String,
|
9511
9786
|
plan_phase_order: T.nilable(Integer),
|
9512
9787
|
price_type: Orb::Price::CumulativeGroupedBulk::PriceType::OrSymbol,
|
9788
|
+
replaces_price_id: T.nilable(String),
|
9513
9789
|
dimensional_price_configuration:
|
9514
9790
|
T.nilable(Orb::DimensionalPriceConfiguration::OrHash),
|
9515
9791
|
model_type: Symbol
|
@@ -9543,6 +9819,9 @@ module Orb
|
|
9543
9819
|
name:,
|
9544
9820
|
plan_phase_order:,
|
9545
9821
|
price_type:,
|
9822
|
+
# The price id this price replaces. This price will take the place of the replaced
|
9823
|
+
# price in plan version migrations.
|
9824
|
+
replaces_price_id:,
|
9546
9825
|
dimensional_price_configuration: nil,
|
9547
9826
|
model_type: :cumulative_grouped_bulk
|
9548
9827
|
)
|
@@ -9580,6 +9859,7 @@ module Orb
|
|
9580
9859
|
plan_phase_order: T.nilable(Integer),
|
9581
9860
|
price_type:
|
9582
9861
|
Orb::Price::CumulativeGroupedBulk::PriceType::TaggedSymbol,
|
9862
|
+
replaces_price_id: T.nilable(String),
|
9583
9863
|
dimensional_price_configuration:
|
9584
9864
|
T.nilable(Orb::DimensionalPriceConfiguration)
|
9585
9865
|
}
|