orb-billing 1.10.0 → 1.11.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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +1 -1
  4. data/lib/orb/models/customer.rb +139 -100
  5. data/lib/orb/models/customer_create_params.rb +139 -100
  6. data/lib/orb/models/customer_tax_id.rb +214 -102
  7. data/lib/orb/models/customer_update_by_external_id_params.rb +139 -100
  8. data/lib/orb/models/customer_update_params.rb +139 -100
  9. data/lib/orb/models/dimensional_price_group_update_params.rb +38 -0
  10. data/lib/orb/models/dimensional_price_groups/external_dimensional_price_group_id_update_params.rb +44 -0
  11. data/lib/orb/models/invoice.rb +141 -102
  12. data/lib/orb/models/invoice_fetch_upcoming_response.rb +141 -102
  13. data/lib/orb/models/invoice_line_item_create_response.rb +2 -2
  14. data/lib/orb/models/per_price_cost.rb +2 -2
  15. data/lib/orb/models/plan.rb +2 -2
  16. data/lib/orb/models/plan_version.rb +2 -2
  17. data/lib/orb/models/price.rb +245 -1
  18. data/lib/orb/models/price_interval.rb +2 -2
  19. data/lib/orb/models.rb +2 -0
  20. data/lib/orb/resources/dimensional_price_groups/external_dimensional_price_group_id.rb +36 -0
  21. data/lib/orb/resources/dimensional_price_groups.rb +31 -0
  22. data/lib/orb/resources/prices/external_price_id.rb +2 -2
  23. data/lib/orb/resources/prices.rb +4 -4
  24. data/lib/orb/version.rb +1 -1
  25. data/lib/orb.rb +2 -0
  26. data/rbi/orb/models/customer.rbi +278 -200
  27. data/rbi/orb/models/customer_create_params.rbi +278 -200
  28. data/rbi/orb/models/customer_tax_id.rbi +214 -102
  29. data/rbi/orb/models/customer_update_by_external_id_params.rbi +278 -200
  30. data/rbi/orb/models/customer_update_params.rbi +278 -200
  31. data/rbi/orb/models/dimensional_price_group_update_params.rbi +61 -0
  32. data/rbi/orb/models/dimensional_price_groups/external_dimensional_price_group_id_update_params.rbi +66 -0
  33. data/rbi/orb/models/invoice.rbi +280 -201
  34. data/rbi/orb/models/invoice_fetch_upcoming_response.rbi +280 -201
  35. data/rbi/orb/models/invoice_line_item_create_response.rbi +2 -1
  36. data/rbi/orb/models/per_price_cost.rbi +2 -1
  37. data/rbi/orb/models/plan.rbi +2 -1
  38. data/rbi/orb/models/plan_version.rbi +2 -1
  39. data/rbi/orb/models/price.rbi +384 -1
  40. data/rbi/orb/models/price_interval.rbi +2 -1
  41. data/rbi/orb/models.rbi +3 -0
  42. data/rbi/orb/resources/customers.rbi +417 -300
  43. data/rbi/orb/resources/dimensional_price_groups/external_dimensional_price_group_id.rbi +26 -0
  44. data/rbi/orb/resources/dimensional_price_groups.rbi +26 -0
  45. data/sig/orb/models/customer_tax_id.rbs +150 -4
  46. data/sig/orb/models/dimensional_price_group_update_params.rbs +31 -0
  47. data/sig/orb/models/dimensional_price_groups/external_dimensional_price_group_id_update_params.rbs +33 -0
  48. data/sig/orb/models/price.rbs +179 -0
  49. data/sig/orb/models.rbs +2 -0
  50. data/sig/orb/resources/dimensional_price_groups/external_dimensional_price_group_id.rbs +7 -0
  51. data/sig/orb/resources/dimensional_price_groups.rbs +7 -0
  52. metadata +8 -2
@@ -62,106 +62,145 @@ module Orb
62
62
  #
63
63
  # ### Supported Tax ID Countries and Types
64
64
  #
65
- # | Country | Type | Description |
66
- # | -------------------- | ------------ | ------------------------------------------------------------------------------------------------------- |
67
- # | Andorra | `ad_nrt` | Andorran NRT Number |
68
- # | Argentina | `ar_cuit` | Argentinian Tax ID Number |
69
- # | Australia | `au_abn` | Australian Business Number (AU ABN) |
70
- # | Australia | `au_arn` | Australian Taxation Office Reference Number |
71
- # | Austria | `eu_vat` | European VAT Number |
72
- # | Bahrain | `bh_vat` | Bahraini VAT Number |
73
- # | Belgium | `eu_vat` | European VAT Number |
74
- # | Bolivia | `bo_tin` | Bolivian Tax ID |
75
- # | Brazil | `br_cnpj` | Brazilian CNPJ Number |
76
- # | Brazil | `br_cpf` | Brazilian CPF Number |
77
- # | Bulgaria | `bg_uic` | Bulgaria Unified Identification Code |
78
- # | Bulgaria | `eu_vat` | European VAT Number |
79
- # | Canada | `ca_bn` | Canadian BN |
80
- # | Canada | `ca_gst_hst` | Canadian GST/HST Number |
81
- # | Canada | `ca_pst_bc` | Canadian PST Number (British Columbia) |
82
- # | Canada | `ca_pst_mb` | Canadian PST Number (Manitoba) |
83
- # | Canada | `ca_pst_sk` | Canadian PST Number (Saskatchewan) |
84
- # | Canada | `ca_qst` | Canadian QST Number (Québec) |
85
- # | Chile | `cl_tin` | Chilean TIN |
86
- # | China | `cn_tin` | Chinese Tax ID |
87
- # | Colombia | `co_nit` | Colombian NIT Number |
88
- # | Costa Rica | `cr_tin` | Costa Rican Tax ID |
89
- # | Croatia | `eu_vat` | European VAT Number |
90
- # | Cyprus | `eu_vat` | European VAT Number |
91
- # | Czech Republic | `eu_vat` | European VAT Number |
92
- # | Denmark | `eu_vat` | European VAT Number |
93
- # | Dominican Republic | `do_rcn` | Dominican RCN Number |
94
- # | Ecuador | `ec_ruc` | Ecuadorian RUC Number |
95
- # | Egypt | `eg_tin` | Egyptian Tax Identification Number |
96
- # | El Salvador | `sv_nit` | El Salvadorian NIT Number |
97
- # | Estonia | `eu_vat` | European VAT Number |
98
- # | EU | `eu_oss_vat` | European One Stop Shop VAT Number for non-Union scheme |
99
- # | Finland | `eu_vat` | European VAT Number |
100
- # | France | `eu_vat` | European VAT Number |
101
- # | Georgia | `ge_vat` | Georgian VAT |
102
- # | Germany | `eu_vat` | European VAT Number |
103
- # | Greece | `eu_vat` | European VAT Number |
104
- # | Hong Kong | `hk_br` | Hong Kong BR Number |
105
- # | Hungary | `eu_vat` | European VAT Number |
106
- # | Hungary | `hu_tin` | Hungary Tax Number (adószám) |
107
- # | Iceland | `is_vat` | Icelandic VAT |
108
- # | India | `in_gst` | Indian GST Number |
109
- # | Indonesia | `id_npwp` | Indonesian NPWP Number |
110
- # | Ireland | `eu_vat` | European VAT Number |
111
- # | Israel | `il_vat` | Israel VAT |
112
- # | Italy | `eu_vat` | European VAT Number |
113
- # | Japan | `jp_cn` | Japanese Corporate Number (_Hōjin Bangō_) |
114
- # | Japan | `jp_rn` | Japanese Registered Foreign Businesses' Registration Number (_Tōroku Kokugai Jigyōsha no Tōroku Bangō_) |
115
- # | Japan | `jp_trn` | Japanese Tax Registration Number (_Tōroku Bangō_) |
116
- # | Kazakhstan | `kz_bin` | Kazakhstani Business Identification Number |
117
- # | Kenya | `ke_pin` | Kenya Revenue Authority Personal Identification Number |
118
- # | Latvia | `eu_vat` | European VAT Number |
119
- # | Liechtenstein | `li_uid` | Liechtensteinian UID Number |
120
- # | Lithuania | `eu_vat` | European VAT Number |
121
- # | Luxembourg | `eu_vat` | European VAT Number |
122
- # | Malaysia | `my_frp` | Malaysian FRP Number |
123
- # | Malaysia | `my_itn` | Malaysian ITN |
124
- # | Malaysia | `my_sst` | Malaysian SST Number |
125
- # | Malta | `eu_vat ` | European VAT Number |
126
- # | Mexico | `mx_rfc` | Mexican RFC Number |
127
- # | Netherlands | `eu_vat` | European VAT Number |
128
- # | New Zealand | `nz_gst` | New Zealand GST Number |
129
- # | Nigeria | `ng_tin` | Nigerian Tax Identification Number |
130
- # | Norway | `no_vat` | Norwegian VAT Number |
131
- # | Norway | `no_voec` | Norwegian VAT on e-commerce Number |
132
- # | Oman | `om_vat` | Omani VAT Number |
133
- # | Peru | `pe_ruc` | Peruvian RUC Number |
134
- # | Philippines | `ph_tin ` | Philippines Tax Identification Number |
135
- # | Poland | `eu_vat` | European VAT Number |
136
- # | Portugal | `eu_vat` | European VAT Number |
137
- # | Romania | `eu_vat` | European VAT Number |
138
- # | Romania | `ro_tin` | Romanian Tax ID Number |
139
- # | Russia | `ru_inn` | Russian INN |
140
- # | Russia | `ru_kpp` | Russian KPP |
141
- # | Saudi Arabia | `sa_vat` | Saudi Arabia VAT |
142
- # | Serbia | `rs_pib` | Serbian PIB Number |
143
- # | Singapore | `sg_gst` | Singaporean GST |
144
- # | Singapore | `sg_uen` | Singaporean UEN |
145
- # | Slovakia | `eu_vat` | European VAT Number |
146
- # | Slovenia | `eu_vat` | European VAT Number |
147
- # | Slovenia | `si_tin` | Slovenia Tax Number (davčna številka) |
148
- # | South Africa | `za_vat` | South African VAT Number |
149
- # | South Korea | `kr_brn` | Korean BRN |
150
- # | Spain | `es_cif` | Spanish NIF Number (previously Spanish CIF Number) |
151
- # | Spain | `eu_vat` | European VAT Number |
152
- # | Sweden | `eu_vat` | European VAT Number |
153
- # | Switzerland | `ch_vat` | Switzerland VAT Number |
154
- # | Taiwan | `tw_vat` | Taiwanese VAT |
155
- # | Thailand | `th_vat` | Thai VAT |
156
- # | Turkey | `tr_tin` | Turkish Tax Identification Number |
157
- # | Ukraine | `ua_vat` | Ukrainian VAT |
158
- # | United Arab Emirates | `ae_trn` | United Arab Emirates TRN |
159
- # | United Kingdom | `eu_vat` | Northern Ireland VAT Number |
160
- # | United Kingdom | `gb_vat` | United Kingdom VAT Number |
161
- # | United States | `us_ein` | United States EIN |
162
- # | Uruguay | `uy_ruc` | Uruguayan RUC Number |
163
- # | Venezuela | `ve_rif` | Venezuelan RIF Number |
164
- # | Vietnam | `vn_tin` | Vietnamese Tax ID Number |
65
+ # | Country | Type | Description |
66
+ # | ---------------------- | ------------ | ------------------------------------------------------------------------------------------------------- |
67
+ # | Albania | `al_tin` | Albania Tax Identification Number |
68
+ # | Andorra | `ad_nrt` | Andorran NRT Number |
69
+ # | Angola | `ao_tin` | Angola Tax Identification Number |
70
+ # | Argentina | `ar_cuit` | Argentinian Tax ID Number |
71
+ # | Armenia | `am_tin` | Armenia Tax Identification Number |
72
+ # | Aruba | `aw_tin` | Aruba Tax Identification Number |
73
+ # | Australia | `au_abn` | Australian Business Number (AU ABN) |
74
+ # | Australia | `au_arn` | Australian Taxation Office Reference Number |
75
+ # | Austria | `eu_vat` | European VAT Number |
76
+ # | Azerbaijan | `az_tin` | Azerbaijan Tax Identification Number |
77
+ # | Bahamas | `bs_tin` | Bahamas Tax Identification Number |
78
+ # | Bahrain | `bh_vat` | Bahraini VAT Number |
79
+ # | Bangladesh | `bd_bin` | Bangladesh Business Identification Number |
80
+ # | Barbados | `bb_tin` | Barbados Tax Identification Number |
81
+ # | Belarus | `by_tin` | Belarus TIN Number |
82
+ # | Belgium | `eu_vat` | European VAT Number |
83
+ # | Benin | `bj_ifu` | Benin Tax Identification Number (Identifiant Fiscal Unique) |
84
+ # | Bolivia | `bo_tin` | Bolivian Tax ID |
85
+ # | Bosnia and Herzegovina | `ba_tin` | Bosnia and Herzegovina Tax Identification Number |
86
+ # | Brazil | `br_cnpj` | Brazilian CNPJ Number |
87
+ # | Brazil | `br_cpf` | Brazilian CPF Number |
88
+ # | Bulgaria | `bg_uic` | Bulgaria Unified Identification Code |
89
+ # | Bulgaria | `eu_vat` | European VAT Number |
90
+ # | Burkina Faso | `bf_ifu` | Burkina Faso Tax Identification Number (Numéro d'Identifiant Fiscal Unique) |
91
+ # | Cambodia | `kh_tin` | Cambodia Tax Identification Number |
92
+ # | Cameroon | `cm_niu` | Cameroon Tax Identification Number (Numéro d'Identifiant fiscal Unique) |
93
+ # | Canada | `ca_bn` | Canadian BN |
94
+ # | Canada | `ca_gst_hst` | Canadian GST/HST Number |
95
+ # | Canada | `ca_pst_bc` | Canadian PST Number (British Columbia) |
96
+ # | Canada | `ca_pst_mb` | Canadian PST Number (Manitoba) |
97
+ # | Canada | `ca_pst_sk` | Canadian PST Number (Saskatchewan) |
98
+ # | Canada | `ca_qst` | Canadian QST Number (Québec) |
99
+ # | Cape Verde | `cv_nif` | Cape Verde Tax Identification Number (Número de Identificação Fiscal) |
100
+ # | Chile | `cl_tin` | Chilean TIN |
101
+ # | China | `cn_tin` | Chinese Tax ID |
102
+ # | Colombia | `co_nit` | Colombian NIT Number |
103
+ # | Congo-Kinshasa | `cd_nif` | Congo (DR) Tax Identification Number (Número de Identificação Fiscal) |
104
+ # | Costa Rica | `cr_tin` | Costa Rican Tax ID |
105
+ # | Croatia | `eu_vat` | European VAT Number |
106
+ # | Croatia | `hr_oib` | Croatian Personal Identification Number (OIB) |
107
+ # | Cyprus | `eu_vat` | European VAT Number |
108
+ # | Czech Republic | `eu_vat` | European VAT Number |
109
+ # | Denmark | `eu_vat` | European VAT Number |
110
+ # | Dominican Republic | `do_rcn` | Dominican RCN Number |
111
+ # | Ecuador | `ec_ruc` | Ecuadorian RUC Number |
112
+ # | Egypt | `eg_tin` | Egyptian Tax Identification Number |
113
+ # | El Salvador | `sv_nit` | El Salvadorian NIT Number |
114
+ # | Estonia | `eu_vat` | European VAT Number |
115
+ # | Ethiopia | `et_tin` | Ethiopia Tax Identification Number |
116
+ # | European Union | `eu_oss_vat` | European One Stop Shop VAT Number for non-Union scheme |
117
+ # | Finland | `eu_vat` | European VAT Number |
118
+ # | France | `eu_vat` | European VAT Number |
119
+ # | Georgia | `ge_vat` | Georgian VAT |
120
+ # | Germany | `de_stn` | German Tax Number (Steuernummer) |
121
+ # | Germany | `eu_vat` | European VAT Number |
122
+ # | Greece | `eu_vat` | European VAT Number |
123
+ # | Guinea | `gn_nif` | Guinea Tax Identification Number (Número de Identificação Fiscal) |
124
+ # | Hong Kong | `hk_br` | Hong Kong BR Number |
125
+ # | Hungary | `eu_vat` | European VAT Number |
126
+ # | Hungary | `hu_tin` | Hungary Tax Number (adószám) |
127
+ # | Iceland | `is_vat` | Icelandic VAT |
128
+ # | India | `in_gst` | Indian GST Number |
129
+ # | Indonesia | `id_npwp` | Indonesian NPWP Number |
130
+ # | Ireland | `eu_vat` | European VAT Number |
131
+ # | Israel | `il_vat` | Israel VAT |
132
+ # | Italy | `eu_vat` | European VAT Number |
133
+ # | Japan | `jp_cn` | Japanese Corporate Number (_Hōjin Bangō_) |
134
+ # | Japan | `jp_rn` | Japanese Registered Foreign Businesses' Registration Number (_Tōroku Kokugai Jigyōsha no Tōroku Bangō_) |
135
+ # | Japan | `jp_trn` | Japanese Tax Registration Number (_Tōroku Bangō_) |
136
+ # | Kazakhstan | `kz_bin` | Kazakhstani Business Identification Number |
137
+ # | Kenya | `ke_pin` | Kenya Revenue Authority Personal Identification Number |
138
+ # | Kyrgyzstan | `kg_tin` | Kyrgyzstan Tax Identification Number |
139
+ # | Laos | `la_tin` | Laos Tax Identification Number |
140
+ # | Latvia | `eu_vat` | European VAT Number |
141
+ # | Liechtenstein | `li_uid` | Liechtensteinian UID Number |
142
+ # | Liechtenstein | `li_vat` | Liechtenstein VAT Number |
143
+ # | Lithuania | `eu_vat` | European VAT Number |
144
+ # | Luxembourg | `eu_vat` | European VAT Number |
145
+ # | Malaysia | `my_frp` | Malaysian FRP Number |
146
+ # | Malaysia | `my_itn` | Malaysian ITN |
147
+ # | Malaysia | `my_sst` | Malaysian SST Number |
148
+ # | Malta | `eu_vat` | European VAT Number |
149
+ # | Mauritania | `mr_nif` | Mauritania Tax Identification Number (Número de Identificação Fiscal) |
150
+ # | Mexico | `mx_rfc` | Mexican RFC Number |
151
+ # | Moldova | `md_vat` | Moldova VAT Number |
152
+ # | Montenegro | `me_pib` | Montenegro PIB Number |
153
+ # | Morocco | `ma_vat` | Morocco VAT Number |
154
+ # | Nepal | `np_pan` | Nepal PAN Number |
155
+ # | Netherlands | `eu_vat` | European VAT Number |
156
+ # | New Zealand | `nz_gst` | New Zealand GST Number |
157
+ # | Nigeria | `ng_tin` | Nigerian Tax Identification Number |
158
+ # | North Macedonia | `mk_vat` | North Macedonia VAT Number |
159
+ # | Northern Ireland | `eu_vat` | Northern Ireland VAT Number |
160
+ # | Norway | `no_vat` | Norwegian VAT Number |
161
+ # | Norway | `no_voec` | Norwegian VAT on e-commerce Number |
162
+ # | Oman | `om_vat` | Omani VAT Number |
163
+ # | Peru | `pe_ruc` | Peruvian RUC Number |
164
+ # | Philippines | `ph_tin` | Philippines Tax Identification Number |
165
+ # | Poland | `eu_vat` | European VAT Number |
166
+ # | Portugal | `eu_vat` | European VAT Number |
167
+ # | Romania | `eu_vat` | European VAT Number |
168
+ # | Romania | `ro_tin` | Romanian Tax ID Number |
169
+ # | Russia | `ru_inn` | Russian INN |
170
+ # | Russia | `ru_kpp` | Russian KPP |
171
+ # | Saudi Arabia | `sa_vat` | Saudi Arabia VAT |
172
+ # | Senegal | `sn_ninea` | Senegal NINEA Number |
173
+ # | Serbia | `rs_pib` | Serbian PIB Number |
174
+ # | Singapore | `sg_gst` | Singaporean GST |
175
+ # | Singapore | `sg_uen` | Singaporean UEN |
176
+ # | Slovakia | `eu_vat` | European VAT Number |
177
+ # | Slovenia | `eu_vat` | European VAT Number |
178
+ # | Slovenia | `si_tin` | Slovenia Tax Number (davčna številka) |
179
+ # | South Africa | `za_vat` | South African VAT Number |
180
+ # | South Korea | `kr_brn` | Korean BRN |
181
+ # | Spain | `es_cif` | Spanish NIF Number (previously Spanish CIF Number) |
182
+ # | Spain | `eu_vat` | European VAT Number |
183
+ # | Suriname | `sr_fin` | Suriname FIN Number |
184
+ # | Sweden | `eu_vat` | European VAT Number |
185
+ # | Switzerland | `ch_uid` | Switzerland UID Number |
186
+ # | Switzerland | `ch_vat` | Switzerland VAT Number |
187
+ # | Taiwan | `tw_vat` | Taiwanese VAT |
188
+ # | Tajikistan | `tj_tin` | Tajikistan Tax Identification Number |
189
+ # | Tanzania | `tz_vat` | Tanzania VAT Number |
190
+ # | Thailand | `th_vat` | Thai VAT |
191
+ # | Turkey | `tr_tin` | Turkish Tax Identification Number |
192
+ # | Uganda | `ug_tin` | Uganda Tax Identification Number |
193
+ # | Ukraine | `ua_vat` | Ukrainian VAT |
194
+ # | United Arab Emirates | `ae_trn` | United Arab Emirates TRN |
195
+ # | United Kingdom | `gb_vat` | United Kingdom VAT Number |
196
+ # | United States | `us_ein` | United States EIN |
197
+ # | Uruguay | `uy_ruc` | Uruguayan RUC Number |
198
+ # | Uzbekistan | `uz_tin` | Uzbekistan TIN Number |
199
+ # | Uzbekistan | `uz_vat` | Uzbekistan VAT Number |
200
+ # | Venezuela | `ve_rif` | Venezuelan RIF Number |
201
+ # | Vietnam | `vn_tin` | Vietnamese Tax ID Number |
202
+ # | Zambia | `zm_tin` | Zambia Tax Identification Number |
203
+ # | Zimbabwe | `zw_tin` | Zimbabwe Tax Identification Number |
165
204
  #
166
205
  # @return [Orb::Models::CustomerTaxID, nil]
167
206
  required :customer_tax_id, -> { Orb::CustomerTaxID }, nil?: true
@@ -806,7 +845,7 @@ module Orb
806
845
  # For more on the types of prices, see
807
846
  # [the core concepts documentation](/core-concepts#plan-and-price)
808
847
  #
809
- # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk]
848
+ # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds]
810
849
  required :price, union: -> { Orb::Price }
811
850
 
812
851
  # @!attribute quantity
@@ -882,7 +921,7 @@ module Orb
882
921
  #
883
922
  # @param partially_invoiced_amount [String] Any amount applied from a partial invoice
884
923
  #
885
- # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk] The Price resource represents a price that can be billed on a subscription, resu
924
+ # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds] The Price resource represents a price that can be billed on a subscription, resu
886
925
  #
887
926
  # @param quantity [Float] Either the fixed fee quantity or the usage during the service period.
888
927
  #
@@ -123,7 +123,7 @@ module Orb
123
123
  # For more on the types of prices, see
124
124
  # [the core concepts documentation](/core-concepts#plan-and-price)
125
125
  #
126
- # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk]
126
+ # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds]
127
127
  required :price, union: -> { Orb::Price }
128
128
 
129
129
  # @!attribute quantity
@@ -199,7 +199,7 @@ module Orb
199
199
  #
200
200
  # @param partially_invoiced_amount [String] Any amount applied from a partial invoice
201
201
  #
202
- # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk] The Price resource represents a price that can be billed on a subscription, resu
202
+ # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds] The Price resource represents a price that can be billed on a subscription, resu
203
203
  #
204
204
  # @param quantity [Float] Either the fixed fee quantity or the usage during the service period.
205
205
  #
@@ -6,7 +6,7 @@ module Orb
6
6
  # @!attribute price
7
7
  # The price object
8
8
  #
9
- # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk]
9
+ # @return [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds]
10
10
  required :price, union: -> { Orb::Price }
11
11
 
12
12
  # @!attribute price_id
@@ -34,7 +34,7 @@ module Orb
34
34
  optional :quantity, Float, nil?: true
35
35
 
36
36
  # @!method initialize(price:, price_id:, subtotal:, total:, quantity: nil)
37
- # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk] The price object
37
+ # @param price [Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds] The price object
38
38
  #
39
39
  # @param price_id [String] The price the cost is associated with
40
40
  #
@@ -132,7 +132,7 @@ module Orb
132
132
  # Prices for this plan. If the plan has phases, this includes prices across all
133
133
  # phases of the plan.
134
134
  #
135
- # @return [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk>]
135
+ # @return [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds>]
136
136
  required :prices, -> { Orb::Internal::Type::ArrayOf[union: Orb::Price] }
137
137
 
138
138
  # @!attribute product
@@ -202,7 +202,7 @@ module Orb
202
202
  #
203
203
  # @param plan_phases [Array<Orb::Models::Plan::PlanPhase>, nil]
204
204
  #
205
- # @param prices [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk>] Prices for this plan. If the plan has phases, this includes prices across all ph
205
+ # @param prices [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds>] Prices for this plan. If the plan has phases, this includes prices across all ph
206
206
  #
207
207
  # @param product [Orb::Models::Plan::Product]
208
208
  #
@@ -25,7 +25,7 @@ module Orb
25
25
  # Prices for this plan. If the plan has phases, this includes prices across all
26
26
  # phases of the plan.
27
27
  #
28
- # @return [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk>]
28
+ # @return [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds>]
29
29
  required :prices, -> { Orb::Internal::Type::ArrayOf[union: Orb::Price] }
30
30
 
31
31
  # @!attribute version
@@ -46,7 +46,7 @@ module Orb
46
46
  #
47
47
  # @param plan_phases [Array<Orb::Models::PlanVersionPhase>, nil]
48
48
  #
49
- # @param prices [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk>] Prices for this plan. If the plan has phases, this includes prices across all ph
49
+ # @param prices [Array<Orb::Models::Price::Unit, Orb::Models::Price::Package, Orb::Models::Price::Matrix, Orb::Models::Price::Tiered, Orb::Models::Price::TieredBPS, Orb::Models::Price::BPS, Orb::Models::Price::BulkBPS, Orb::Models::Price::Bulk, Orb::Models::Price::ThresholdTotalAmount, Orb::Models::Price::TieredPackage, Orb::Models::Price::GroupedTiered, Orb::Models::Price::TieredWithMinimum, Orb::Models::Price::TieredPackageWithMinimum, Orb::Models::Price::PackageWithAllocation, Orb::Models::Price::UnitWithPercent, Orb::Models::Price::MatrixWithAllocation, Orb::Models::Price::TieredWithProration, Orb::Models::Price::UnitWithProration, Orb::Models::Price::GroupedAllocation, Orb::Models::Price::GroupedWithProratedMinimum, Orb::Models::Price::GroupedWithMeteredMinimum, Orb::Models::Price::MatrixWithDisplayName, Orb::Models::Price::BulkWithProration, Orb::Models::Price::GroupedTieredPackage, Orb::Models::Price::MaxGroupTieredPackage, Orb::Models::Price::ScalableMatrixWithUnitPricing, Orb::Models::Price::ScalableMatrixWithTieredPricing, Orb::Models::Price::CumulativeGroupedBulk, Orb::Models::Price::GroupedWithMinMaxThresholds>] Prices for this plan. If the plan has phases, this includes prices across all ph
50
50
  #
51
51
  # @param version [Integer]
52
52