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/sig/orb/models/price.rbs
CHANGED
@@ -58,6 +58,7 @@ module Orb
|
|
58
58
|
name: String,
|
59
59
|
plan_phase_order: Integer?,
|
60
60
|
price_type: Orb::Models::Price::Unit::price_type,
|
61
|
+
replaces_price_id: String?,
|
61
62
|
unit_config: Orb::UnitConfig,
|
62
63
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
63
64
|
}
|
@@ -109,6 +110,8 @@ module Orb
|
|
109
110
|
|
110
111
|
attr_accessor price_type: Orb::Models::Price::Unit::price_type
|
111
112
|
|
113
|
+
attr_accessor replaces_price_id: String?
|
114
|
+
|
112
115
|
attr_accessor unit_config: Orb::UnitConfig
|
113
116
|
|
114
117
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -136,6 +139,7 @@ module Orb
|
|
136
139
|
name: String,
|
137
140
|
plan_phase_order: Integer?,
|
138
141
|
price_type: Orb::Models::Price::Unit::price_type,
|
142
|
+
replaces_price_id: String?,
|
139
143
|
unit_config: Orb::UnitConfig,
|
140
144
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
141
145
|
?model_type: :unit
|
@@ -165,6 +169,7 @@ module Orb
|
|
165
169
|
name: String,
|
166
170
|
plan_phase_order: Integer?,
|
167
171
|
price_type: Orb::Models::Price::Unit::price_type,
|
172
|
+
replaces_price_id: String?,
|
168
173
|
unit_config: Orb::UnitConfig,
|
169
174
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
170
175
|
}
|
@@ -232,6 +237,7 @@ module Orb
|
|
232
237
|
package_config: Orb::PackageConfig,
|
233
238
|
plan_phase_order: Integer?,
|
234
239
|
price_type: Orb::Models::Price::Package::price_type,
|
240
|
+
replaces_price_id: String?,
|
235
241
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
236
242
|
}
|
237
243
|
|
@@ -284,6 +290,8 @@ module Orb
|
|
284
290
|
|
285
291
|
attr_accessor price_type: Orb::Models::Price::Package::price_type
|
286
292
|
|
293
|
+
attr_accessor replaces_price_id: String?
|
294
|
+
|
287
295
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
288
296
|
|
289
297
|
def initialize: (
|
@@ -310,6 +318,7 @@ module Orb
|
|
310
318
|
package_config: Orb::PackageConfig,
|
311
319
|
plan_phase_order: Integer?,
|
312
320
|
price_type: Orb::Models::Price::Package::price_type,
|
321
|
+
replaces_price_id: String?,
|
313
322
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
314
323
|
?model_type: :package
|
315
324
|
) -> void
|
@@ -339,6 +348,7 @@ module Orb
|
|
339
348
|
package_config: Orb::PackageConfig,
|
340
349
|
plan_phase_order: Integer?,
|
341
350
|
price_type: Orb::Models::Price::Package::price_type,
|
351
|
+
replaces_price_id: String?,
|
342
352
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
343
353
|
}
|
344
354
|
|
@@ -405,6 +415,7 @@ module Orb
|
|
405
415
|
name: String,
|
406
416
|
plan_phase_order: Integer?,
|
407
417
|
price_type: Orb::Models::Price::Matrix::price_type,
|
418
|
+
replaces_price_id: String?,
|
408
419
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
409
420
|
}
|
410
421
|
|
@@ -457,6 +468,8 @@ module Orb
|
|
457
468
|
|
458
469
|
attr_accessor price_type: Orb::Models::Price::Matrix::price_type
|
459
470
|
|
471
|
+
attr_accessor replaces_price_id: String?
|
472
|
+
|
460
473
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
461
474
|
|
462
475
|
def initialize: (
|
@@ -483,6 +496,7 @@ module Orb
|
|
483
496
|
name: String,
|
484
497
|
plan_phase_order: Integer?,
|
485
498
|
price_type: Orb::Models::Price::Matrix::price_type,
|
499
|
+
replaces_price_id: String?,
|
486
500
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
487
501
|
?model_type: :matrix
|
488
502
|
) -> void
|
@@ -512,6 +526,7 @@ module Orb
|
|
512
526
|
name: String,
|
513
527
|
plan_phase_order: Integer?,
|
514
528
|
price_type: Orb::Models::Price::Matrix::price_type,
|
529
|
+
replaces_price_id: String?,
|
515
530
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
516
531
|
}
|
517
532
|
|
@@ -577,6 +592,7 @@ module Orb
|
|
577
592
|
name: String,
|
578
593
|
plan_phase_order: Integer?,
|
579
594
|
price_type: Orb::Models::Price::Tiered::price_type,
|
595
|
+
replaces_price_id: String?,
|
580
596
|
tiered_config: Orb::TieredConfig,
|
581
597
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
582
598
|
}
|
@@ -628,6 +644,8 @@ module Orb
|
|
628
644
|
|
629
645
|
attr_accessor price_type: Orb::Models::Price::Tiered::price_type
|
630
646
|
|
647
|
+
attr_accessor replaces_price_id: String?
|
648
|
+
|
631
649
|
attr_accessor tiered_config: Orb::TieredConfig
|
632
650
|
|
633
651
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -655,6 +673,7 @@ module Orb
|
|
655
673
|
name: String,
|
656
674
|
plan_phase_order: Integer?,
|
657
675
|
price_type: Orb::Models::Price::Tiered::price_type,
|
676
|
+
replaces_price_id: String?,
|
658
677
|
tiered_config: Orb::TieredConfig,
|
659
678
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
660
679
|
?model_type: :tiered
|
@@ -684,6 +703,7 @@ module Orb
|
|
684
703
|
name: String,
|
685
704
|
plan_phase_order: Integer?,
|
686
705
|
price_type: Orb::Models::Price::Tiered::price_type,
|
706
|
+
replaces_price_id: String?,
|
687
707
|
tiered_config: Orb::TieredConfig,
|
688
708
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
689
709
|
}
|
@@ -750,6 +770,7 @@ module Orb
|
|
750
770
|
name: String,
|
751
771
|
plan_phase_order: Integer?,
|
752
772
|
price_type: Orb::Models::Price::TieredBPS::price_type,
|
773
|
+
replaces_price_id: String?,
|
753
774
|
tiered_bps_config: Orb::TieredBPSConfig,
|
754
775
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
755
776
|
}
|
@@ -801,6 +822,8 @@ module Orb
|
|
801
822
|
|
802
823
|
attr_accessor price_type: Orb::Models::Price::TieredBPS::price_type
|
803
824
|
|
825
|
+
attr_accessor replaces_price_id: String?
|
826
|
+
|
804
827
|
attr_accessor tiered_bps_config: Orb::TieredBPSConfig
|
805
828
|
|
806
829
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -828,6 +851,7 @@ module Orb
|
|
828
851
|
name: String,
|
829
852
|
plan_phase_order: Integer?,
|
830
853
|
price_type: Orb::Models::Price::TieredBPS::price_type,
|
854
|
+
replaces_price_id: String?,
|
831
855
|
tiered_bps_config: Orb::TieredBPSConfig,
|
832
856
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
833
857
|
?model_type: :tiered_bps
|
@@ -857,6 +881,7 @@ module Orb
|
|
857
881
|
name: String,
|
858
882
|
plan_phase_order: Integer?,
|
859
883
|
price_type: Orb::Models::Price::TieredBPS::price_type,
|
884
|
+
replaces_price_id: String?,
|
860
885
|
tiered_bps_config: Orb::TieredBPSConfig,
|
861
886
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
862
887
|
}
|
@@ -924,6 +949,7 @@ module Orb
|
|
924
949
|
name: String,
|
925
950
|
plan_phase_order: Integer?,
|
926
951
|
price_type: Orb::Models::Price::BPS::price_type,
|
952
|
+
replaces_price_id: String?,
|
927
953
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
928
954
|
}
|
929
955
|
|
@@ -976,6 +1002,8 @@ module Orb
|
|
976
1002
|
|
977
1003
|
attr_accessor price_type: Orb::Models::Price::BPS::price_type
|
978
1004
|
|
1005
|
+
attr_accessor replaces_price_id: String?
|
1006
|
+
|
979
1007
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
980
1008
|
|
981
1009
|
def initialize: (
|
@@ -1002,6 +1030,7 @@ module Orb
|
|
1002
1030
|
name: String,
|
1003
1031
|
plan_phase_order: Integer?,
|
1004
1032
|
price_type: Orb::Models::Price::BPS::price_type,
|
1033
|
+
replaces_price_id: String?,
|
1005
1034
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1006
1035
|
?model_type: :bps
|
1007
1036
|
) -> void
|
@@ -1031,6 +1060,7 @@ module Orb
|
|
1031
1060
|
name: String,
|
1032
1061
|
plan_phase_order: Integer?,
|
1033
1062
|
price_type: Orb::Models::Price::BPS::price_type,
|
1063
|
+
replaces_price_id: String?,
|
1034
1064
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1035
1065
|
}
|
1036
1066
|
|
@@ -1097,6 +1127,7 @@ module Orb
|
|
1097
1127
|
name: String,
|
1098
1128
|
plan_phase_order: Integer?,
|
1099
1129
|
price_type: Orb::Models::Price::BulkBPS::price_type,
|
1130
|
+
replaces_price_id: String?,
|
1100
1131
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1101
1132
|
}
|
1102
1133
|
|
@@ -1149,6 +1180,8 @@ module Orb
|
|
1149
1180
|
|
1150
1181
|
attr_accessor price_type: Orb::Models::Price::BulkBPS::price_type
|
1151
1182
|
|
1183
|
+
attr_accessor replaces_price_id: String?
|
1184
|
+
|
1152
1185
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1153
1186
|
|
1154
1187
|
def initialize: (
|
@@ -1175,6 +1208,7 @@ module Orb
|
|
1175
1208
|
name: String,
|
1176
1209
|
plan_phase_order: Integer?,
|
1177
1210
|
price_type: Orb::Models::Price::BulkBPS::price_type,
|
1211
|
+
replaces_price_id: String?,
|
1178
1212
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1179
1213
|
?model_type: :bulk_bps
|
1180
1214
|
) -> void
|
@@ -1204,6 +1238,7 @@ module Orb
|
|
1204
1238
|
name: String,
|
1205
1239
|
plan_phase_order: Integer?,
|
1206
1240
|
price_type: Orb::Models::Price::BulkBPS::price_type,
|
1241
|
+
replaces_price_id: String?,
|
1207
1242
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1208
1243
|
}
|
1209
1244
|
|
@@ -1270,6 +1305,7 @@ module Orb
|
|
1270
1305
|
name: String,
|
1271
1306
|
plan_phase_order: Integer?,
|
1272
1307
|
price_type: Orb::Models::Price::Bulk::price_type,
|
1308
|
+
replaces_price_id: String?,
|
1273
1309
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1274
1310
|
}
|
1275
1311
|
|
@@ -1322,6 +1358,8 @@ module Orb
|
|
1322
1358
|
|
1323
1359
|
attr_accessor price_type: Orb::Models::Price::Bulk::price_type
|
1324
1360
|
|
1361
|
+
attr_accessor replaces_price_id: String?
|
1362
|
+
|
1325
1363
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1326
1364
|
|
1327
1365
|
def initialize: (
|
@@ -1348,6 +1386,7 @@ module Orb
|
|
1348
1386
|
name: String,
|
1349
1387
|
plan_phase_order: Integer?,
|
1350
1388
|
price_type: Orb::Models::Price::Bulk::price_type,
|
1389
|
+
replaces_price_id: String?,
|
1351
1390
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1352
1391
|
?model_type: :bulk
|
1353
1392
|
) -> void
|
@@ -1377,6 +1416,7 @@ module Orb
|
|
1377
1416
|
name: String,
|
1378
1417
|
plan_phase_order: Integer?,
|
1379
1418
|
price_type: Orb::Models::Price::Bulk::price_type,
|
1419
|
+
replaces_price_id: String?,
|
1380
1420
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1381
1421
|
}
|
1382
1422
|
|
@@ -1442,6 +1482,7 @@ module Orb
|
|
1442
1482
|
name: String,
|
1443
1483
|
plan_phase_order: Integer?,
|
1444
1484
|
price_type: Orb::Models::Price::ThresholdTotalAmount::price_type,
|
1485
|
+
replaces_price_id: String?,
|
1445
1486
|
threshold_total_amount_config: ::Hash[Symbol, top],
|
1446
1487
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1447
1488
|
}
|
@@ -1493,6 +1534,8 @@ module Orb
|
|
1493
1534
|
|
1494
1535
|
attr_accessor price_type: Orb::Models::Price::ThresholdTotalAmount::price_type
|
1495
1536
|
|
1537
|
+
attr_accessor replaces_price_id: String?
|
1538
|
+
|
1496
1539
|
attr_accessor threshold_total_amount_config: ::Hash[Symbol, top]
|
1497
1540
|
|
1498
1541
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -1520,6 +1563,7 @@ module Orb
|
|
1520
1563
|
name: String,
|
1521
1564
|
plan_phase_order: Integer?,
|
1522
1565
|
price_type: Orb::Models::Price::ThresholdTotalAmount::price_type,
|
1566
|
+
replaces_price_id: String?,
|
1523
1567
|
threshold_total_amount_config: ::Hash[Symbol, top],
|
1524
1568
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1525
1569
|
?model_type: :threshold_total_amount
|
@@ -1549,6 +1593,7 @@ module Orb
|
|
1549
1593
|
name: String,
|
1550
1594
|
plan_phase_order: Integer?,
|
1551
1595
|
price_type: Orb::Models::Price::ThresholdTotalAmount::price_type,
|
1596
|
+
replaces_price_id: String?,
|
1552
1597
|
threshold_total_amount_config: ::Hash[Symbol, top],
|
1553
1598
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1554
1599
|
}
|
@@ -1615,6 +1660,7 @@ module Orb
|
|
1615
1660
|
name: String,
|
1616
1661
|
plan_phase_order: Integer?,
|
1617
1662
|
price_type: Orb::Models::Price::TieredPackage::price_type,
|
1663
|
+
replaces_price_id: String?,
|
1618
1664
|
tiered_package_config: ::Hash[Symbol, top],
|
1619
1665
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1620
1666
|
}
|
@@ -1666,6 +1712,8 @@ module Orb
|
|
1666
1712
|
|
1667
1713
|
attr_accessor price_type: Orb::Models::Price::TieredPackage::price_type
|
1668
1714
|
|
1715
|
+
attr_accessor replaces_price_id: String?
|
1716
|
+
|
1669
1717
|
attr_accessor tiered_package_config: ::Hash[Symbol, top]
|
1670
1718
|
|
1671
1719
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -1693,6 +1741,7 @@ module Orb
|
|
1693
1741
|
name: String,
|
1694
1742
|
plan_phase_order: Integer?,
|
1695
1743
|
price_type: Orb::Models::Price::TieredPackage::price_type,
|
1744
|
+
replaces_price_id: String?,
|
1696
1745
|
tiered_package_config: ::Hash[Symbol, top],
|
1697
1746
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1698
1747
|
?model_type: :tiered_package
|
@@ -1722,6 +1771,7 @@ module Orb
|
|
1722
1771
|
name: String,
|
1723
1772
|
plan_phase_order: Integer?,
|
1724
1773
|
price_type: Orb::Models::Price::TieredPackage::price_type,
|
1774
|
+
replaces_price_id: String?,
|
1725
1775
|
tiered_package_config: ::Hash[Symbol, top],
|
1726
1776
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1727
1777
|
}
|
@@ -1789,6 +1839,7 @@ module Orb
|
|
1789
1839
|
name: String,
|
1790
1840
|
plan_phase_order: Integer?,
|
1791
1841
|
price_type: Orb::Models::Price::GroupedTiered::price_type,
|
1842
|
+
replaces_price_id: String?,
|
1792
1843
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1793
1844
|
}
|
1794
1845
|
|
@@ -1841,6 +1892,8 @@ module Orb
|
|
1841
1892
|
|
1842
1893
|
attr_accessor price_type: Orb::Models::Price::GroupedTiered::price_type
|
1843
1894
|
|
1895
|
+
attr_accessor replaces_price_id: String?
|
1896
|
+
|
1844
1897
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1845
1898
|
|
1846
1899
|
def initialize: (
|
@@ -1867,6 +1920,7 @@ module Orb
|
|
1867
1920
|
name: String,
|
1868
1921
|
plan_phase_order: Integer?,
|
1869
1922
|
price_type: Orb::Models::Price::GroupedTiered::price_type,
|
1923
|
+
replaces_price_id: String?,
|
1870
1924
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
1871
1925
|
?model_type: :grouped_tiered
|
1872
1926
|
) -> void
|
@@ -1896,6 +1950,7 @@ module Orb
|
|
1896
1950
|
name: String,
|
1897
1951
|
plan_phase_order: Integer?,
|
1898
1952
|
price_type: Orb::Models::Price::GroupedTiered::price_type,
|
1953
|
+
replaces_price_id: String?,
|
1899
1954
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1900
1955
|
}
|
1901
1956
|
|
@@ -1961,6 +2016,7 @@ module Orb
|
|
1961
2016
|
name: String,
|
1962
2017
|
plan_phase_order: Integer?,
|
1963
2018
|
price_type: Orb::Models::Price::TieredWithMinimum::price_type,
|
2019
|
+
replaces_price_id: String?,
|
1964
2020
|
tiered_with_minimum_config: ::Hash[Symbol, top],
|
1965
2021
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
1966
2022
|
}
|
@@ -2012,6 +2068,8 @@ module Orb
|
|
2012
2068
|
|
2013
2069
|
attr_accessor price_type: Orb::Models::Price::TieredWithMinimum::price_type
|
2014
2070
|
|
2071
|
+
attr_accessor replaces_price_id: String?
|
2072
|
+
|
2015
2073
|
attr_accessor tiered_with_minimum_config: ::Hash[Symbol, top]
|
2016
2074
|
|
2017
2075
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -2039,6 +2097,7 @@ module Orb
|
|
2039
2097
|
name: String,
|
2040
2098
|
plan_phase_order: Integer?,
|
2041
2099
|
price_type: Orb::Models::Price::TieredWithMinimum::price_type,
|
2100
|
+
replaces_price_id: String?,
|
2042
2101
|
tiered_with_minimum_config: ::Hash[Symbol, top],
|
2043
2102
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2044
2103
|
?model_type: :tiered_with_minimum
|
@@ -2068,6 +2127,7 @@ module Orb
|
|
2068
2127
|
name: String,
|
2069
2128
|
plan_phase_order: Integer?,
|
2070
2129
|
price_type: Orb::Models::Price::TieredWithMinimum::price_type,
|
2130
|
+
replaces_price_id: String?,
|
2071
2131
|
tiered_with_minimum_config: ::Hash[Symbol, top],
|
2072
2132
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2073
2133
|
}
|
@@ -2134,6 +2194,7 @@ module Orb
|
|
2134
2194
|
name: String,
|
2135
2195
|
plan_phase_order: Integer?,
|
2136
2196
|
price_type: Orb::Models::Price::TieredPackageWithMinimum::price_type,
|
2197
|
+
replaces_price_id: String?,
|
2137
2198
|
tiered_package_with_minimum_config: ::Hash[Symbol, top],
|
2138
2199
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2139
2200
|
}
|
@@ -2185,6 +2246,8 @@ module Orb
|
|
2185
2246
|
|
2186
2247
|
attr_accessor price_type: Orb::Models::Price::TieredPackageWithMinimum::price_type
|
2187
2248
|
|
2249
|
+
attr_accessor replaces_price_id: String?
|
2250
|
+
|
2188
2251
|
attr_accessor tiered_package_with_minimum_config: ::Hash[Symbol, top]
|
2189
2252
|
|
2190
2253
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -2212,6 +2275,7 @@ module Orb
|
|
2212
2275
|
name: String,
|
2213
2276
|
plan_phase_order: Integer?,
|
2214
2277
|
price_type: Orb::Models::Price::TieredPackageWithMinimum::price_type,
|
2278
|
+
replaces_price_id: String?,
|
2215
2279
|
tiered_package_with_minimum_config: ::Hash[Symbol, top],
|
2216
2280
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2217
2281
|
?model_type: :tiered_package_with_minimum
|
@@ -2241,6 +2305,7 @@ module Orb
|
|
2241
2305
|
name: String,
|
2242
2306
|
plan_phase_order: Integer?,
|
2243
2307
|
price_type: Orb::Models::Price::TieredPackageWithMinimum::price_type,
|
2308
|
+
replaces_price_id: String?,
|
2244
2309
|
tiered_package_with_minimum_config: ::Hash[Symbol, top],
|
2245
2310
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2246
2311
|
}
|
@@ -2308,6 +2373,7 @@ module Orb
|
|
2308
2373
|
package_with_allocation_config: ::Hash[Symbol, top],
|
2309
2374
|
plan_phase_order: Integer?,
|
2310
2375
|
price_type: Orb::Models::Price::PackageWithAllocation::price_type,
|
2376
|
+
replaces_price_id: String?,
|
2311
2377
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2312
2378
|
}
|
2313
2379
|
|
@@ -2360,6 +2426,8 @@ module Orb
|
|
2360
2426
|
|
2361
2427
|
attr_accessor price_type: Orb::Models::Price::PackageWithAllocation::price_type
|
2362
2428
|
|
2429
|
+
attr_accessor replaces_price_id: String?
|
2430
|
+
|
2363
2431
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2364
2432
|
|
2365
2433
|
def initialize: (
|
@@ -2386,6 +2454,7 @@ module Orb
|
|
2386
2454
|
package_with_allocation_config: ::Hash[Symbol, top],
|
2387
2455
|
plan_phase_order: Integer?,
|
2388
2456
|
price_type: Orb::Models::Price::PackageWithAllocation::price_type,
|
2457
|
+
replaces_price_id: String?,
|
2389
2458
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2390
2459
|
?model_type: :package_with_allocation
|
2391
2460
|
) -> void
|
@@ -2415,6 +2484,7 @@ module Orb
|
|
2415
2484
|
package_with_allocation_config: ::Hash[Symbol, top],
|
2416
2485
|
plan_phase_order: Integer?,
|
2417
2486
|
price_type: Orb::Models::Price::PackageWithAllocation::price_type,
|
2487
|
+
replaces_price_id: String?,
|
2418
2488
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2419
2489
|
}
|
2420
2490
|
|
@@ -2480,6 +2550,7 @@ module Orb
|
|
2480
2550
|
name: String,
|
2481
2551
|
plan_phase_order: Integer?,
|
2482
2552
|
price_type: Orb::Models::Price::UnitWithPercent::price_type,
|
2553
|
+
replaces_price_id: String?,
|
2483
2554
|
unit_with_percent_config: ::Hash[Symbol, top],
|
2484
2555
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2485
2556
|
}
|
@@ -2531,6 +2602,8 @@ module Orb
|
|
2531
2602
|
|
2532
2603
|
attr_accessor price_type: Orb::Models::Price::UnitWithPercent::price_type
|
2533
2604
|
|
2605
|
+
attr_accessor replaces_price_id: String?
|
2606
|
+
|
2534
2607
|
attr_accessor unit_with_percent_config: ::Hash[Symbol, top]
|
2535
2608
|
|
2536
2609
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -2558,6 +2631,7 @@ module Orb
|
|
2558
2631
|
name: String,
|
2559
2632
|
plan_phase_order: Integer?,
|
2560
2633
|
price_type: Orb::Models::Price::UnitWithPercent::price_type,
|
2634
|
+
replaces_price_id: String?,
|
2561
2635
|
unit_with_percent_config: ::Hash[Symbol, top],
|
2562
2636
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2563
2637
|
?model_type: :unit_with_percent
|
@@ -2587,6 +2661,7 @@ module Orb
|
|
2587
2661
|
name: String,
|
2588
2662
|
plan_phase_order: Integer?,
|
2589
2663
|
price_type: Orb::Models::Price::UnitWithPercent::price_type,
|
2664
|
+
replaces_price_id: String?,
|
2590
2665
|
unit_with_percent_config: ::Hash[Symbol, top],
|
2591
2666
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2592
2667
|
}
|
@@ -2654,6 +2729,7 @@ module Orb
|
|
2654
2729
|
name: String,
|
2655
2730
|
plan_phase_order: Integer?,
|
2656
2731
|
price_type: Orb::Models::Price::MatrixWithAllocation::price_type,
|
2732
|
+
replaces_price_id: String?,
|
2657
2733
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2658
2734
|
}
|
2659
2735
|
|
@@ -2706,6 +2782,8 @@ module Orb
|
|
2706
2782
|
|
2707
2783
|
attr_accessor price_type: Orb::Models::Price::MatrixWithAllocation::price_type
|
2708
2784
|
|
2785
|
+
attr_accessor replaces_price_id: String?
|
2786
|
+
|
2709
2787
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2710
2788
|
|
2711
2789
|
def initialize: (
|
@@ -2732,6 +2810,7 @@ module Orb
|
|
2732
2810
|
name: String,
|
2733
2811
|
plan_phase_order: Integer?,
|
2734
2812
|
price_type: Orb::Models::Price::MatrixWithAllocation::price_type,
|
2813
|
+
replaces_price_id: String?,
|
2735
2814
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2736
2815
|
?model_type: :matrix_with_allocation
|
2737
2816
|
) -> void
|
@@ -2761,6 +2840,7 @@ module Orb
|
|
2761
2840
|
name: String,
|
2762
2841
|
plan_phase_order: Integer?,
|
2763
2842
|
price_type: Orb::Models::Price::MatrixWithAllocation::price_type,
|
2843
|
+
replaces_price_id: String?,
|
2764
2844
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2765
2845
|
}
|
2766
2846
|
|
@@ -2826,6 +2906,7 @@ module Orb
|
|
2826
2906
|
name: String,
|
2827
2907
|
plan_phase_order: Integer?,
|
2828
2908
|
price_type: Orb::Models::Price::TieredWithProration::price_type,
|
2909
|
+
replaces_price_id: String?,
|
2829
2910
|
tiered_with_proration_config: ::Hash[Symbol, top],
|
2830
2911
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2831
2912
|
}
|
@@ -2877,6 +2958,8 @@ module Orb
|
|
2877
2958
|
|
2878
2959
|
attr_accessor price_type: Orb::Models::Price::TieredWithProration::price_type
|
2879
2960
|
|
2961
|
+
attr_accessor replaces_price_id: String?
|
2962
|
+
|
2880
2963
|
attr_accessor tiered_with_proration_config: ::Hash[Symbol, top]
|
2881
2964
|
|
2882
2965
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -2904,6 +2987,7 @@ module Orb
|
|
2904
2987
|
name: String,
|
2905
2988
|
plan_phase_order: Integer?,
|
2906
2989
|
price_type: Orb::Models::Price::TieredWithProration::price_type,
|
2990
|
+
replaces_price_id: String?,
|
2907
2991
|
tiered_with_proration_config: ::Hash[Symbol, top],
|
2908
2992
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
2909
2993
|
?model_type: :tiered_with_proration
|
@@ -2933,6 +3017,7 @@ module Orb
|
|
2933
3017
|
name: String,
|
2934
3018
|
plan_phase_order: Integer?,
|
2935
3019
|
price_type: Orb::Models::Price::TieredWithProration::price_type,
|
3020
|
+
replaces_price_id: String?,
|
2936
3021
|
tiered_with_proration_config: ::Hash[Symbol, top],
|
2937
3022
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
2938
3023
|
}
|
@@ -2999,6 +3084,7 @@ module Orb
|
|
2999
3084
|
name: String,
|
3000
3085
|
plan_phase_order: Integer?,
|
3001
3086
|
price_type: Orb::Models::Price::UnitWithProration::price_type,
|
3087
|
+
replaces_price_id: String?,
|
3002
3088
|
unit_with_proration_config: ::Hash[Symbol, top],
|
3003
3089
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3004
3090
|
}
|
@@ -3050,6 +3136,8 @@ module Orb
|
|
3050
3136
|
|
3051
3137
|
attr_accessor price_type: Orb::Models::Price::UnitWithProration::price_type
|
3052
3138
|
|
3139
|
+
attr_accessor replaces_price_id: String?
|
3140
|
+
|
3053
3141
|
attr_accessor unit_with_proration_config: ::Hash[Symbol, top]
|
3054
3142
|
|
3055
3143
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -3077,6 +3165,7 @@ module Orb
|
|
3077
3165
|
name: String,
|
3078
3166
|
plan_phase_order: Integer?,
|
3079
3167
|
price_type: Orb::Models::Price::UnitWithProration::price_type,
|
3168
|
+
replaces_price_id: String?,
|
3080
3169
|
unit_with_proration_config: ::Hash[Symbol, top],
|
3081
3170
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3082
3171
|
?model_type: :unit_with_proration
|
@@ -3106,6 +3195,7 @@ module Orb
|
|
3106
3195
|
name: String,
|
3107
3196
|
plan_phase_order: Integer?,
|
3108
3197
|
price_type: Orb::Models::Price::UnitWithProration::price_type,
|
3198
|
+
replaces_price_id: String?,
|
3109
3199
|
unit_with_proration_config: ::Hash[Symbol, top],
|
3110
3200
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3111
3201
|
}
|
@@ -3173,6 +3263,7 @@ module Orb
|
|
3173
3263
|
name: String,
|
3174
3264
|
plan_phase_order: Integer?,
|
3175
3265
|
price_type: Orb::Models::Price::GroupedAllocation::price_type,
|
3266
|
+
replaces_price_id: String?,
|
3176
3267
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3177
3268
|
}
|
3178
3269
|
|
@@ -3225,6 +3316,8 @@ module Orb
|
|
3225
3316
|
|
3226
3317
|
attr_accessor price_type: Orb::Models::Price::GroupedAllocation::price_type
|
3227
3318
|
|
3319
|
+
attr_accessor replaces_price_id: String?
|
3320
|
+
|
3228
3321
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3229
3322
|
|
3230
3323
|
def initialize: (
|
@@ -3251,6 +3344,7 @@ module Orb
|
|
3251
3344
|
name: String,
|
3252
3345
|
plan_phase_order: Integer?,
|
3253
3346
|
price_type: Orb::Models::Price::GroupedAllocation::price_type,
|
3347
|
+
replaces_price_id: String?,
|
3254
3348
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3255
3349
|
?model_type: :grouped_allocation
|
3256
3350
|
) -> void
|
@@ -3280,6 +3374,7 @@ module Orb
|
|
3280
3374
|
name: String,
|
3281
3375
|
plan_phase_order: Integer?,
|
3282
3376
|
price_type: Orb::Models::Price::GroupedAllocation::price_type,
|
3377
|
+
replaces_price_id: String?,
|
3283
3378
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3284
3379
|
}
|
3285
3380
|
|
@@ -3346,6 +3441,7 @@ module Orb
|
|
3346
3441
|
name: String,
|
3347
3442
|
plan_phase_order: Integer?,
|
3348
3443
|
price_type: Orb::Models::Price::GroupedWithProratedMinimum::price_type,
|
3444
|
+
replaces_price_id: String?,
|
3349
3445
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3350
3446
|
}
|
3351
3447
|
|
@@ -3398,6 +3494,8 @@ module Orb
|
|
3398
3494
|
|
3399
3495
|
attr_accessor price_type: Orb::Models::Price::GroupedWithProratedMinimum::price_type
|
3400
3496
|
|
3497
|
+
attr_accessor replaces_price_id: String?
|
3498
|
+
|
3401
3499
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3402
3500
|
|
3403
3501
|
def initialize: (
|
@@ -3424,6 +3522,7 @@ module Orb
|
|
3424
3522
|
name: String,
|
3425
3523
|
plan_phase_order: Integer?,
|
3426
3524
|
price_type: Orb::Models::Price::GroupedWithProratedMinimum::price_type,
|
3525
|
+
replaces_price_id: String?,
|
3427
3526
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3428
3527
|
?model_type: :grouped_with_prorated_minimum
|
3429
3528
|
) -> void
|
@@ -3453,6 +3552,7 @@ module Orb
|
|
3453
3552
|
name: String,
|
3454
3553
|
plan_phase_order: Integer?,
|
3455
3554
|
price_type: Orb::Models::Price::GroupedWithProratedMinimum::price_type,
|
3555
|
+
replaces_price_id: String?,
|
3456
3556
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3457
3557
|
}
|
3458
3558
|
|
@@ -3519,6 +3619,7 @@ module Orb
|
|
3519
3619
|
name: String,
|
3520
3620
|
plan_phase_order: Integer?,
|
3521
3621
|
price_type: Orb::Models::Price::GroupedWithMeteredMinimum::price_type,
|
3622
|
+
replaces_price_id: String?,
|
3522
3623
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3523
3624
|
}
|
3524
3625
|
|
@@ -3571,6 +3672,8 @@ module Orb
|
|
3571
3672
|
|
3572
3673
|
attr_accessor price_type: Orb::Models::Price::GroupedWithMeteredMinimum::price_type
|
3573
3674
|
|
3675
|
+
attr_accessor replaces_price_id: String?
|
3676
|
+
|
3574
3677
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3575
3678
|
|
3576
3679
|
def initialize: (
|
@@ -3597,6 +3700,7 @@ module Orb
|
|
3597
3700
|
name: String,
|
3598
3701
|
plan_phase_order: Integer?,
|
3599
3702
|
price_type: Orb::Models::Price::GroupedWithMeteredMinimum::price_type,
|
3703
|
+
replaces_price_id: String?,
|
3600
3704
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3601
3705
|
?model_type: :grouped_with_metered_minimum
|
3602
3706
|
) -> void
|
@@ -3626,6 +3730,7 @@ module Orb
|
|
3626
3730
|
name: String,
|
3627
3731
|
plan_phase_order: Integer?,
|
3628
3732
|
price_type: Orb::Models::Price::GroupedWithMeteredMinimum::price_type,
|
3733
|
+
replaces_price_id: String?,
|
3629
3734
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3630
3735
|
}
|
3631
3736
|
|
@@ -3692,6 +3797,7 @@ module Orb
|
|
3692
3797
|
name: String,
|
3693
3798
|
plan_phase_order: Integer?,
|
3694
3799
|
price_type: Orb::Models::Price::MatrixWithDisplayName::price_type,
|
3800
|
+
replaces_price_id: String?,
|
3695
3801
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3696
3802
|
}
|
3697
3803
|
|
@@ -3744,6 +3850,8 @@ module Orb
|
|
3744
3850
|
|
3745
3851
|
attr_accessor price_type: Orb::Models::Price::MatrixWithDisplayName::price_type
|
3746
3852
|
|
3853
|
+
attr_accessor replaces_price_id: String?
|
3854
|
+
|
3747
3855
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3748
3856
|
|
3749
3857
|
def initialize: (
|
@@ -3770,6 +3878,7 @@ module Orb
|
|
3770
3878
|
name: String,
|
3771
3879
|
plan_phase_order: Integer?,
|
3772
3880
|
price_type: Orb::Models::Price::MatrixWithDisplayName::price_type,
|
3881
|
+
replaces_price_id: String?,
|
3773
3882
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3774
3883
|
?model_type: :matrix_with_display_name
|
3775
3884
|
) -> void
|
@@ -3799,6 +3908,7 @@ module Orb
|
|
3799
3908
|
name: String,
|
3800
3909
|
plan_phase_order: Integer?,
|
3801
3910
|
price_type: Orb::Models::Price::MatrixWithDisplayName::price_type,
|
3911
|
+
replaces_price_id: String?,
|
3802
3912
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3803
3913
|
}
|
3804
3914
|
|
@@ -3865,6 +3975,7 @@ module Orb
|
|
3865
3975
|
name: String,
|
3866
3976
|
plan_phase_order: Integer?,
|
3867
3977
|
price_type: Orb::Models::Price::BulkWithProration::price_type,
|
3978
|
+
replaces_price_id: String?,
|
3868
3979
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3869
3980
|
}
|
3870
3981
|
|
@@ -3917,6 +4028,8 @@ module Orb
|
|
3917
4028
|
|
3918
4029
|
attr_accessor price_type: Orb::Models::Price::BulkWithProration::price_type
|
3919
4030
|
|
4031
|
+
attr_accessor replaces_price_id: String?
|
4032
|
+
|
3920
4033
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3921
4034
|
|
3922
4035
|
def initialize: (
|
@@ -3943,6 +4056,7 @@ module Orb
|
|
3943
4056
|
name: String,
|
3944
4057
|
plan_phase_order: Integer?,
|
3945
4058
|
price_type: Orb::Models::Price::BulkWithProration::price_type,
|
4059
|
+
replaces_price_id: String?,
|
3946
4060
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
3947
4061
|
?model_type: :bulk_with_proration
|
3948
4062
|
) -> void
|
@@ -3972,6 +4086,7 @@ module Orb
|
|
3972
4086
|
name: String,
|
3973
4087
|
plan_phase_order: Integer?,
|
3974
4088
|
price_type: Orb::Models::Price::BulkWithProration::price_type,
|
4089
|
+
replaces_price_id: String?,
|
3975
4090
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
3976
4091
|
}
|
3977
4092
|
|
@@ -4038,6 +4153,7 @@ module Orb
|
|
4038
4153
|
name: String,
|
4039
4154
|
plan_phase_order: Integer?,
|
4040
4155
|
price_type: Orb::Models::Price::GroupedTieredPackage::price_type,
|
4156
|
+
replaces_price_id: String?,
|
4041
4157
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4042
4158
|
}
|
4043
4159
|
|
@@ -4090,6 +4206,8 @@ module Orb
|
|
4090
4206
|
|
4091
4207
|
attr_accessor price_type: Orb::Models::Price::GroupedTieredPackage::price_type
|
4092
4208
|
|
4209
|
+
attr_accessor replaces_price_id: String?
|
4210
|
+
|
4093
4211
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4094
4212
|
|
4095
4213
|
def initialize: (
|
@@ -4116,6 +4234,7 @@ module Orb
|
|
4116
4234
|
name: String,
|
4117
4235
|
plan_phase_order: Integer?,
|
4118
4236
|
price_type: Orb::Models::Price::GroupedTieredPackage::price_type,
|
4237
|
+
replaces_price_id: String?,
|
4119
4238
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
4120
4239
|
?model_type: :grouped_tiered_package
|
4121
4240
|
) -> void
|
@@ -4145,6 +4264,7 @@ module Orb
|
|
4145
4264
|
name: String,
|
4146
4265
|
plan_phase_order: Integer?,
|
4147
4266
|
price_type: Orb::Models::Price::GroupedTieredPackage::price_type,
|
4267
|
+
replaces_price_id: String?,
|
4148
4268
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4149
4269
|
}
|
4150
4270
|
|
@@ -4211,6 +4331,7 @@ module Orb
|
|
4211
4331
|
name: String,
|
4212
4332
|
plan_phase_order: Integer?,
|
4213
4333
|
price_type: Orb::Models::Price::MaxGroupTieredPackage::price_type,
|
4334
|
+
replaces_price_id: String?,
|
4214
4335
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4215
4336
|
}
|
4216
4337
|
|
@@ -4263,6 +4384,8 @@ module Orb
|
|
4263
4384
|
|
4264
4385
|
attr_accessor price_type: Orb::Models::Price::MaxGroupTieredPackage::price_type
|
4265
4386
|
|
4387
|
+
attr_accessor replaces_price_id: String?
|
4388
|
+
|
4266
4389
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4267
4390
|
|
4268
4391
|
def initialize: (
|
@@ -4289,6 +4412,7 @@ module Orb
|
|
4289
4412
|
name: String,
|
4290
4413
|
plan_phase_order: Integer?,
|
4291
4414
|
price_type: Orb::Models::Price::MaxGroupTieredPackage::price_type,
|
4415
|
+
replaces_price_id: String?,
|
4292
4416
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
4293
4417
|
?model_type: :max_group_tiered_package
|
4294
4418
|
) -> void
|
@@ -4318,6 +4442,7 @@ module Orb
|
|
4318
4442
|
name: String,
|
4319
4443
|
plan_phase_order: Integer?,
|
4320
4444
|
price_type: Orb::Models::Price::MaxGroupTieredPackage::price_type,
|
4445
|
+
replaces_price_id: String?,
|
4321
4446
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4322
4447
|
}
|
4323
4448
|
|
@@ -4383,6 +4508,7 @@ module Orb
|
|
4383
4508
|
name: String,
|
4384
4509
|
plan_phase_order: Integer?,
|
4385
4510
|
price_type: Orb::Models::Price::ScalableMatrixWithUnitPricing::price_type,
|
4511
|
+
replaces_price_id: String?,
|
4386
4512
|
scalable_matrix_with_unit_pricing_config: ::Hash[Symbol, top],
|
4387
4513
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4388
4514
|
}
|
@@ -4434,6 +4560,8 @@ module Orb
|
|
4434
4560
|
|
4435
4561
|
attr_accessor price_type: Orb::Models::Price::ScalableMatrixWithUnitPricing::price_type
|
4436
4562
|
|
4563
|
+
attr_accessor replaces_price_id: String?
|
4564
|
+
|
4437
4565
|
attr_accessor scalable_matrix_with_unit_pricing_config: ::Hash[Symbol, top]
|
4438
4566
|
|
4439
4567
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -4461,6 +4589,7 @@ module Orb
|
|
4461
4589
|
name: String,
|
4462
4590
|
plan_phase_order: Integer?,
|
4463
4591
|
price_type: Orb::Models::Price::ScalableMatrixWithUnitPricing::price_type,
|
4592
|
+
replaces_price_id: String?,
|
4464
4593
|
scalable_matrix_with_unit_pricing_config: ::Hash[Symbol, top],
|
4465
4594
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
4466
4595
|
?model_type: :scalable_matrix_with_unit_pricing
|
@@ -4490,6 +4619,7 @@ module Orb
|
|
4490
4619
|
name: String,
|
4491
4620
|
plan_phase_order: Integer?,
|
4492
4621
|
price_type: Orb::Models::Price::ScalableMatrixWithUnitPricing::price_type,
|
4622
|
+
replaces_price_id: String?,
|
4493
4623
|
scalable_matrix_with_unit_pricing_config: ::Hash[Symbol, top],
|
4494
4624
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4495
4625
|
}
|
@@ -4556,6 +4686,7 @@ module Orb
|
|
4556
4686
|
name: String,
|
4557
4687
|
plan_phase_order: Integer?,
|
4558
4688
|
price_type: Orb::Models::Price::ScalableMatrixWithTieredPricing::price_type,
|
4689
|
+
replaces_price_id: String?,
|
4559
4690
|
scalable_matrix_with_tiered_pricing_config: ::Hash[Symbol, top],
|
4560
4691
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4561
4692
|
}
|
@@ -4607,6 +4738,8 @@ module Orb
|
|
4607
4738
|
|
4608
4739
|
attr_accessor price_type: Orb::Models::Price::ScalableMatrixWithTieredPricing::price_type
|
4609
4740
|
|
4741
|
+
attr_accessor replaces_price_id: String?
|
4742
|
+
|
4610
4743
|
attr_accessor scalable_matrix_with_tiered_pricing_config: ::Hash[Symbol, top]
|
4611
4744
|
|
4612
4745
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
@@ -4634,6 +4767,7 @@ module Orb
|
|
4634
4767
|
name: String,
|
4635
4768
|
plan_phase_order: Integer?,
|
4636
4769
|
price_type: Orb::Models::Price::ScalableMatrixWithTieredPricing::price_type,
|
4770
|
+
replaces_price_id: String?,
|
4637
4771
|
scalable_matrix_with_tiered_pricing_config: ::Hash[Symbol, top],
|
4638
4772
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
4639
4773
|
?model_type: :scalable_matrix_with_tiered_pricing
|
@@ -4663,6 +4797,7 @@ module Orb
|
|
4663
4797
|
name: String,
|
4664
4798
|
plan_phase_order: Integer?,
|
4665
4799
|
price_type: Orb::Models::Price::ScalableMatrixWithTieredPricing::price_type,
|
4800
|
+
replaces_price_id: String?,
|
4666
4801
|
scalable_matrix_with_tiered_pricing_config: ::Hash[Symbol, top],
|
4667
4802
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4668
4803
|
}
|
@@ -4730,6 +4865,7 @@ module Orb
|
|
4730
4865
|
name: String,
|
4731
4866
|
plan_phase_order: Integer?,
|
4732
4867
|
price_type: Orb::Models::Price::CumulativeGroupedBulk::price_type,
|
4868
|
+
replaces_price_id: String?,
|
4733
4869
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4734
4870
|
}
|
4735
4871
|
|
@@ -4782,6 +4918,8 @@ module Orb
|
|
4782
4918
|
|
4783
4919
|
attr_accessor price_type: Orb::Models::Price::CumulativeGroupedBulk::price_type
|
4784
4920
|
|
4921
|
+
attr_accessor replaces_price_id: String?
|
4922
|
+
|
4785
4923
|
attr_accessor dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4786
4924
|
|
4787
4925
|
def initialize: (
|
@@ -4808,6 +4946,7 @@ module Orb
|
|
4808
4946
|
name: String,
|
4809
4947
|
plan_phase_order: Integer?,
|
4810
4948
|
price_type: Orb::Models::Price::CumulativeGroupedBulk::price_type,
|
4949
|
+
replaces_price_id: String?,
|
4811
4950
|
?dimensional_price_configuration: Orb::DimensionalPriceConfiguration?,
|
4812
4951
|
?model_type: :cumulative_grouped_bulk
|
4813
4952
|
) -> void
|
@@ -4837,6 +4976,7 @@ module Orb
|
|
4837
4976
|
name: String,
|
4838
4977
|
plan_phase_order: Integer?,
|
4839
4978
|
price_type: Orb::Models::Price::CumulativeGroupedBulk::price_type,
|
4979
|
+
replaces_price_id: String?,
|
4840
4980
|
dimensional_price_configuration: Orb::DimensionalPriceConfiguration?
|
4841
4981
|
}
|
4842
4982
|
|