File tree Expand file tree Collapse file tree 11 files changed +47
-17
lines changed Expand file tree Collapse file tree 11 files changed +47
-17
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 118
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d63c8075b48441663736b457f8ad859c58cc3e31dfbffb68db44c3f00562012c .yml
3
- openapi_spec_hash : c47dbff685a0a449bfc1ad729c13a72e
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-2c9291de1fd876908ebe56144e90762ab6e390e3f25102da815ab3fca6335d38 .yml
3
+ openapi_spec_hash : eabe2d8e58ceed1d61d41fe7a44020ca
4
4
config_hash : 1f73a949b649ecfe6ec68ba1bb459dc2
Original file line number Diff line number Diff line change @@ -191,7 +191,9 @@ class TieredPackageConfig < Orb::Internal::Type::BaseModel
191
191
192
192
# @!attribute tiers
193
193
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
194
- # are defined using exclusive lower bounds.
194
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
195
+ # the total quantity rather than the number of packages, so they must be multiples
196
+ # of the package size.
195
197
#
196
198
# @return [Array<Orb::Models::NewFloatingTieredPackagePrice::TieredPackageConfig::Tier>]
197
199
required :tiers ,
Original file line number Diff line number Diff line change @@ -201,7 +201,9 @@ class TieredPackageConfig < Orb::Internal::Type::BaseModel
201
201
202
202
# @!attribute tiers
203
203
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
204
- # are defined using exclusive lower bounds.
204
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
205
+ # the total quantity rather than the number of packages, so they must be multiples
206
+ # of the package size.
205
207
#
206
208
# @return [Array<Orb::Models::NewPlanTieredPackagePrice::TieredPackageConfig::Tier>]
207
209
required :tiers ,
Original file line number Diff line number Diff line change @@ -201,7 +201,9 @@ class TieredPackageConfig < Orb::Internal::Type::BaseModel
201
201
202
202
# @!attribute tiers
203
203
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
204
- # are defined using exclusive lower bounds.
204
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
205
+ # the total quantity rather than the number of packages, so they must be multiples
206
+ # of the package size.
205
207
#
206
208
# @return [Array<Orb::Models::NewSubscriptionTieredPackagePrice::TieredPackageConfig::Tier>]
207
209
required :tiers ,
Original file line number Diff line number Diff line change @@ -1793,7 +1793,9 @@ class TieredPackageConfig < Orb::Internal::Type::BaseModel
1793
1793
1794
1794
# @!attribute tiers
1795
1795
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
1796
- # are defined using exclusive lower bounds.
1796
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
1797
+ # the total quantity rather than the number of packages, so they must be multiples
1798
+ # of the package size.
1797
1799
#
1798
1800
# @return [Array<Orb::Models::Price::TieredPackage::TieredPackageConfig::Tier>]
1799
1801
required :tiers , -> { Orb ::Internal ::Type ::ArrayOf [ Orb ::Price ::TieredPackage ::TieredPackageConfig ::Tier ] }
Original file line number Diff line number Diff line change @@ -451,7 +451,9 @@ class TieredPackageConfig < Orb::Internal::Type::BaseModel
451
451
452
452
# @!attribute tiers
453
453
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
454
- # are defined using exclusive lower bounds.
454
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
455
+ # the total quantity rather than the number of packages, so they must be multiples
456
+ # of the package size.
455
457
#
456
458
# @return [Array<Orb::Models::PriceCreateParams::TieredPackageConfig::Tier>]
457
459
required :tiers , -> { Orb ::Internal ::Type ::ArrayOf [ Orb ::PriceCreateParams ::TieredPackageConfig ::Tier ] }
Original file line number Diff line number Diff line change @@ -327,7 +327,9 @@ module Orb
327
327
attr_accessor :package_size
328
328
329
329
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
330
- # are defined using exclusive lower bounds.
330
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
331
+ # the total quantity rather than the number of packages, so they must be multiples
332
+ # of the package size.
331
333
sig do
332
334
returns (
333
335
T ::Array [
@@ -351,7 +353,9 @@ module Orb
351
353
# Package size
352
354
package_size :,
353
355
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
354
- # are defined using exclusive lower bounds.
356
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
357
+ # the total quantity rather than the number of packages, so they must be multiples
358
+ # of the package size.
355
359
tiers :
356
360
)
357
361
end
Original file line number Diff line number Diff line change @@ -328,7 +328,9 @@ module Orb
328
328
attr_accessor :package_size
329
329
330
330
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
331
- # are defined using exclusive lower bounds.
331
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
332
+ # the total quantity rather than the number of packages, so they must be multiples
333
+ # of the package size.
332
334
sig do
333
335
returns (
334
336
T ::Array [ Orb ::NewPlanTieredPackagePrice ::TieredPackageConfig ::Tier ]
@@ -350,7 +352,9 @@ module Orb
350
352
# Package size
351
353
package_size :,
352
354
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
353
- # are defined using exclusive lower bounds.
355
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
356
+ # the total quantity rather than the number of packages, so they must be multiples
357
+ # of the package size.
354
358
tiers :
355
359
)
356
360
end
Original file line number Diff line number Diff line change @@ -347,7 +347,9 @@ module Orb
347
347
attr_accessor :package_size
348
348
349
349
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
350
- # are defined using exclusive lower bounds.
350
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
351
+ # the total quantity rather than the number of packages, so they must be multiples
352
+ # of the package size.
351
353
sig do
352
354
returns (
353
355
T ::Array [
@@ -371,7 +373,9 @@ module Orb
371
373
# Package size
372
374
package_size :,
373
375
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
374
- # are defined using exclusive lower bounds.
376
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
377
+ # the total quantity rather than the number of packages, so they must be multiples
378
+ # of the package size.
375
379
tiers :
376
380
)
377
381
end
Original file line number Diff line number Diff line change @@ -2469,7 +2469,9 @@ module Orb
2469
2469
attr_accessor :package_size
2470
2470
2471
2471
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
2472
- # are defined using exclusive lower bounds.
2472
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
2473
+ # the total quantity rather than the number of packages, so they must be multiples
2474
+ # of the package size.
2473
2475
sig do
2474
2476
returns (
2475
2477
T ::Array [ Orb ::Price ::TieredPackage ::TieredPackageConfig ::Tier ]
@@ -2491,7 +2493,9 @@ module Orb
2491
2493
# Package size
2492
2494
package_size :,
2493
2495
# Apply tiered pricing after rounding up the quantity to the package size. Tiers
2494
- # are defined using exclusive lower bounds.
2496
+ # are defined using exclusive lower bounds. The tier bounds are defined based on
2497
+ # the total quantity rather than the number of packages, so they must be multiples
2498
+ # of the package size.
2495
2499
tiers :
2496
2500
)
2497
2501
end
You can’t perform that action at this time.
0 commit comments