orb-billing 6.10.0 → 6.12.0

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 (47) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +1 -1
  3. package/resources/beta/beta.d.mts +114 -24
  4. package/resources/beta/beta.d.mts.map +1 -1
  5. package/resources/beta/beta.d.ts +114 -24
  6. package/resources/beta/beta.d.ts.map +1 -1
  7. package/resources/beta/beta.js.map +1 -1
  8. package/resources/beta/beta.mjs.map +1 -1
  9. package/resources/beta/external-plan-id.d.mts +114 -24
  10. package/resources/beta/external-plan-id.d.mts.map +1 -1
  11. package/resources/beta/external-plan-id.d.ts +114 -24
  12. package/resources/beta/external-plan-id.d.ts.map +1 -1
  13. package/resources/plans/plans.d.mts +57 -12
  14. package/resources/plans/plans.d.mts.map +1 -1
  15. package/resources/plans/plans.d.ts +57 -12
  16. package/resources/plans/plans.d.ts.map +1 -1
  17. package/resources/plans/plans.js.map +1 -1
  18. package/resources/plans/plans.mjs.map +1 -1
  19. package/resources/prices/prices.d.mts +265 -53
  20. package/resources/prices/prices.d.mts.map +1 -1
  21. package/resources/prices/prices.d.ts +265 -53
  22. package/resources/prices/prices.d.ts.map +1 -1
  23. package/resources/prices/prices.js.map +1 -1
  24. package/resources/prices/prices.mjs.map +1 -1
  25. package/resources/shared.d.mts +255 -51
  26. package/resources/shared.d.mts.map +1 -1
  27. package/resources/shared.d.ts +255 -51
  28. package/resources/shared.d.ts.map +1 -1
  29. package/resources/subscriptions.d.mts +409 -80
  30. package/resources/subscriptions.d.mts.map +1 -1
  31. package/resources/subscriptions.d.ts +409 -80
  32. package/resources/subscriptions.d.ts.map +1 -1
  33. package/resources/subscriptions.js +39 -6
  34. package/resources/subscriptions.js.map +1 -1
  35. package/resources/subscriptions.mjs +39 -6
  36. package/resources/subscriptions.mjs.map +1 -1
  37. package/src/resources/beta/beta.ts +114 -24
  38. package/src/resources/beta/external-plan-id.ts +114 -24
  39. package/src/resources/plans/plans.ts +57 -12
  40. package/src/resources/prices/prices.ts +265 -53
  41. package/src/resources/shared.ts +255 -51
  42. package/src/resources/subscriptions.ts +409 -80
  43. package/src/version.ts +1 -1
  44. package/version.d.mts +1 -1
  45. package/version.d.ts +1 -1
  46. package/version.js +1 -1
  47. package/version.mjs +1 -1
@@ -326,7 +326,11 @@ export declare namespace PriceCreateParams {
326
326
  */
327
327
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
328
328
  /**
329
- * The ID of the license type to associate with this price.
329
+ * The ID of the license type to associate with this price. On a usage price this
330
+ * also marks the price as eligible to draw down from that license type's
331
+ * allocation; a usage price created without it is billed normally. Usage prices
332
+ * with a license type must use the `unit` model, and only draw down when their
333
+ * currency matches the allocation's.
330
334
  */
331
335
  license_type_id?: string | null;
332
336
  /**
@@ -409,7 +413,11 @@ export declare namespace PriceCreateParams {
409
413
  */
410
414
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
411
415
  /**
412
- * The ID of the license type to associate with this price.
416
+ * The ID of the license type to associate with this price. On a usage price this
417
+ * also marks the price as eligible to draw down from that license type's
418
+ * allocation; a usage price created without it is billed normally. Usage prices
419
+ * with a license type must use the `unit` model, and only draw down when their
420
+ * currency matches the allocation's.
413
421
  */
414
422
  license_type_id?: string | null;
415
423
  /**
@@ -492,7 +500,11 @@ export declare namespace PriceCreateParams {
492
500
  */
493
501
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
494
502
  /**
495
- * The ID of the license type to associate with this price.
503
+ * The ID of the license type to associate with this price. On a usage price this
504
+ * also marks the price as eligible to draw down from that license type's
505
+ * allocation; a usage price created without it is billed normally. Usage prices
506
+ * with a license type must use the `unit` model, and only draw down when their
507
+ * currency matches the allocation's.
496
508
  */
497
509
  license_type_id?: string | null;
498
510
  /**
@@ -575,7 +587,11 @@ export declare namespace PriceCreateParams {
575
587
  */
576
588
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
577
589
  /**
578
- * The ID of the license type to associate with this price.
590
+ * The ID of the license type to associate with this price. On a usage price this
591
+ * also marks the price as eligible to draw down from that license type's
592
+ * allocation; a usage price created without it is billed normally. Usage prices
593
+ * with a license type must use the `unit` model, and only draw down when their
594
+ * currency matches the allocation's.
579
595
  */
580
596
  license_type_id?: string | null;
581
597
  /**
@@ -701,7 +717,11 @@ export declare namespace PriceCreateParams {
701
717
  */
702
718
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
703
719
  /**
704
- * The ID of the license type to associate with this price.
720
+ * The ID of the license type to associate with this price. On a usage price this
721
+ * also marks the price as eligible to draw down from that license type's
722
+ * allocation; a usage price created without it is billed normally. Usage prices
723
+ * with a license type must use the `unit` model, and only draw down when their
724
+ * currency matches the allocation's.
705
725
  */
706
726
  license_type_id?: string | null;
707
727
  /**
@@ -784,7 +804,11 @@ export declare namespace PriceCreateParams {
784
804
  */
785
805
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
786
806
  /**
787
- * The ID of the license type to associate with this price.
807
+ * The ID of the license type to associate with this price. On a usage price this
808
+ * also marks the price as eligible to draw down from that license type's
809
+ * allocation; a usage price created without it is billed normally. Usage prices
810
+ * with a license type must use the `unit` model, and only draw down when their
811
+ * currency matches the allocation's.
788
812
  */
789
813
  license_type_id?: string | null;
790
814
  /**
@@ -867,7 +891,11 @@ export declare namespace PriceCreateParams {
867
891
  */
868
892
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
869
893
  /**
870
- * The ID of the license type to associate with this price.
894
+ * The ID of the license type to associate with this price. On a usage price this
895
+ * also marks the price as eligible to draw down from that license type's
896
+ * allocation; a usage price created without it is billed normally. Usage prices
897
+ * with a license type must use the `unit` model, and only draw down when their
898
+ * currency matches the allocation's.
871
899
  */
872
900
  license_type_id?: string | null;
873
901
  /**
@@ -978,7 +1006,11 @@ export declare namespace PriceCreateParams {
978
1006
  */
979
1007
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
980
1008
  /**
981
- * The ID of the license type to associate with this price.
1009
+ * The ID of the license type to associate with this price. On a usage price this
1010
+ * also marks the price as eligible to draw down from that license type's
1011
+ * allocation; a usage price created without it is billed normally. Usage prices
1012
+ * with a license type must use the `unit` model, and only draw down when their
1013
+ * currency matches the allocation's.
982
1014
  */
983
1015
  license_type_id?: string | null;
984
1016
  /**
@@ -1088,7 +1120,11 @@ export declare namespace PriceCreateParams {
1088
1120
  */
1089
1121
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1090
1122
  /**
1091
- * The ID of the license type to associate with this price.
1123
+ * The ID of the license type to associate with this price. On a usage price this
1124
+ * also marks the price as eligible to draw down from that license type's
1125
+ * allocation; a usage price created without it is billed normally. Usage prices
1126
+ * with a license type must use the `unit` model, and only draw down when their
1127
+ * currency matches the allocation's.
1092
1128
  */
1093
1129
  license_type_id?: string | null;
1094
1130
  /**
@@ -1204,7 +1240,11 @@ export declare namespace PriceCreateParams {
1204
1240
  */
1205
1241
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1206
1242
  /**
1207
- * The ID of the license type to associate with this price.
1243
+ * The ID of the license type to associate with this price. On a usage price this
1244
+ * also marks the price as eligible to draw down from that license type's
1245
+ * allocation; a usage price created without it is billed normally. Usage prices
1246
+ * with a license type must use the `unit` model, and only draw down when their
1247
+ * currency matches the allocation's.
1208
1248
  */
1209
1249
  license_type_id?: string | null;
1210
1250
  /**
@@ -1315,7 +1355,11 @@ export declare namespace PriceCreateParams {
1315
1355
  */
1316
1356
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1317
1357
  /**
1318
- * The ID of the license type to associate with this price.
1358
+ * The ID of the license type to associate with this price. On a usage price this
1359
+ * also marks the price as eligible to draw down from that license type's
1360
+ * allocation; a usage price created without it is billed normally. Usage prices
1361
+ * with a license type must use the `unit` model, and only draw down when their
1362
+ * currency matches the allocation's.
1319
1363
  */
1320
1364
  license_type_id?: string | null;
1321
1365
  /**
@@ -1434,7 +1478,11 @@ export declare namespace PriceCreateParams {
1434
1478
  */
1435
1479
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1436
1480
  /**
1437
- * The ID of the license type to associate with this price.
1481
+ * The ID of the license type to associate with this price. On a usage price this
1482
+ * also marks the price as eligible to draw down from that license type's
1483
+ * allocation; a usage price created without it is billed normally. Usage prices
1484
+ * with a license type must use the `unit` model, and only draw down when their
1485
+ * currency matches the allocation's.
1438
1486
  */
1439
1487
  license_type_id?: string | null;
1440
1488
  /**
@@ -1540,7 +1588,11 @@ export declare namespace PriceCreateParams {
1540
1588
  */
1541
1589
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1542
1590
  /**
1543
- * The ID of the license type to associate with this price.
1591
+ * The ID of the license type to associate with this price. On a usage price this
1592
+ * also marks the price as eligible to draw down from that license type's
1593
+ * allocation; a usage price created without it is billed normally. Usage prices
1594
+ * with a license type must use the `unit` model, and only draw down when their
1595
+ * currency matches the allocation's.
1544
1596
  */
1545
1597
  license_type_id?: string | null;
1546
1598
  /**
@@ -1633,7 +1685,11 @@ export declare namespace PriceCreateParams {
1633
1685
  */
1634
1686
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1635
1687
  /**
1636
- * The ID of the license type to associate with this price.
1688
+ * The ID of the license type to associate with this price. On a usage price this
1689
+ * also marks the price as eligible to draw down from that license type's
1690
+ * allocation; a usage price created without it is billed normally. Usage prices
1691
+ * with a license type must use the `unit` model, and only draw down when their
1692
+ * currency matches the allocation's.
1637
1693
  */
1638
1694
  license_type_id?: string | null;
1639
1695
  /**
@@ -1731,7 +1787,11 @@ export declare namespace PriceCreateParams {
1731
1787
  */
1732
1788
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1733
1789
  /**
1734
- * The ID of the license type to associate with this price.
1790
+ * The ID of the license type to associate with this price. On a usage price this
1791
+ * also marks the price as eligible to draw down from that license type's
1792
+ * allocation; a usage price created without it is billed normally. Usage prices
1793
+ * with a license type must use the `unit` model, and only draw down when their
1794
+ * currency matches the allocation's.
1735
1795
  */
1736
1796
  license_type_id?: string | null;
1737
1797
  /**
@@ -1814,7 +1874,11 @@ export declare namespace PriceCreateParams {
1814
1874
  */
1815
1875
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1816
1876
  /**
1817
- * The ID of the license type to associate with this price.
1877
+ * The ID of the license type to associate with this price. On a usage price this
1878
+ * also marks the price as eligible to draw down from that license type's
1879
+ * allocation; a usage price created without it is billed normally. Usage prices
1880
+ * with a license type must use the `unit` model, and only draw down when their
1881
+ * currency matches the allocation's.
1818
1882
  */
1819
1883
  license_type_id?: string | null;
1820
1884
  /**
@@ -1947,7 +2011,11 @@ export declare namespace PriceCreateParams {
1947
2011
  */
1948
2012
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
1949
2013
  /**
1950
- * The ID of the license type to associate with this price.
2014
+ * The ID of the license type to associate with this price. On a usage price this
2015
+ * also marks the price as eligible to draw down from that license type's
2016
+ * allocation; a usage price created without it is billed normally. Usage prices
2017
+ * with a license type must use the `unit` model, and only draw down when their
2018
+ * currency matches the allocation's.
1951
2019
  */
1952
2020
  license_type_id?: string | null;
1953
2021
  /**
@@ -2057,7 +2125,11 @@ export declare namespace PriceCreateParams {
2057
2125
  */
2058
2126
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2059
2127
  /**
2060
- * The ID of the license type to associate with this price.
2128
+ * The ID of the license type to associate with this price. On a usage price this
2129
+ * also marks the price as eligible to draw down from that license type's
2130
+ * allocation; a usage price created without it is billed normally. Usage prices
2131
+ * with a license type must use the `unit` model, and only draw down when their
2132
+ * currency matches the allocation's.
2061
2133
  */
2062
2134
  license_type_id?: string | null;
2063
2135
  /**
@@ -2151,7 +2223,11 @@ export declare namespace PriceCreateParams {
2151
2223
  */
2152
2224
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2153
2225
  /**
2154
- * The ID of the license type to associate with this price.
2226
+ * The ID of the license type to associate with this price. On a usage price this
2227
+ * also marks the price as eligible to draw down from that license type's
2228
+ * allocation; a usage price created without it is billed normally. Usage prices
2229
+ * with a license type must use the `unit` model, and only draw down when their
2230
+ * currency matches the allocation's.
2155
2231
  */
2156
2232
  license_type_id?: string | null;
2157
2233
  /**
@@ -2253,7 +2329,11 @@ export declare namespace PriceCreateParams {
2253
2329
  */
2254
2330
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2255
2331
  /**
2256
- * The ID of the license type to associate with this price.
2332
+ * The ID of the license type to associate with this price. On a usage price this
2333
+ * also marks the price as eligible to draw down from that license type's
2334
+ * allocation; a usage price created without it is billed normally. Usage prices
2335
+ * with a license type must use the `unit` model, and only draw down when their
2336
+ * currency matches the allocation's.
2257
2337
  */
2258
2338
  license_type_id?: string | null;
2259
2339
  /**
@@ -2362,7 +2442,11 @@ export declare namespace PriceCreateParams {
2362
2442
  */
2363
2443
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2364
2444
  /**
2365
- * The ID of the license type to associate with this price.
2445
+ * The ID of the license type to associate with this price. On a usage price this
2446
+ * also marks the price as eligible to draw down from that license type's
2447
+ * allocation; a usage price created without it is billed normally. Usage prices
2448
+ * with a license type must use the `unit` model, and only draw down when their
2449
+ * currency matches the allocation's.
2366
2450
  */
2367
2451
  license_type_id?: string | null;
2368
2452
  /**
@@ -2464,7 +2548,11 @@ export declare namespace PriceCreateParams {
2464
2548
  */
2465
2549
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2466
2550
  /**
2467
- * The ID of the license type to associate with this price.
2551
+ * The ID of the license type to associate with this price. On a usage price this
2552
+ * also marks the price as eligible to draw down from that license type's
2553
+ * allocation; a usage price created without it is billed normally. Usage prices
2554
+ * with a license type must use the `unit` model, and only draw down when their
2555
+ * currency matches the allocation's.
2468
2556
  */
2469
2557
  license_type_id?: string | null;
2470
2558
  /**
@@ -2599,7 +2687,11 @@ export declare namespace PriceCreateParams {
2599
2687
  */
2600
2688
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2601
2689
  /**
2602
- * The ID of the license type to associate with this price.
2690
+ * The ID of the license type to associate with this price. On a usage price this
2691
+ * also marks the price as eligible to draw down from that license type's
2692
+ * allocation; a usage price created without it is billed normally. Usage prices
2693
+ * with a license type must use the `unit` model, and only draw down when their
2694
+ * currency matches the allocation's.
2603
2695
  */
2604
2696
  license_type_id?: string | null;
2605
2697
  /**
@@ -2705,7 +2797,11 @@ export declare namespace PriceCreateParams {
2705
2797
  */
2706
2798
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2707
2799
  /**
2708
- * The ID of the license type to associate with this price.
2800
+ * The ID of the license type to associate with this price. On a usage price this
2801
+ * also marks the price as eligible to draw down from that license type's
2802
+ * allocation; a usage price created without it is billed normally. Usage prices
2803
+ * with a license type must use the `unit` model, and only draw down when their
2804
+ * currency matches the allocation's.
2709
2805
  */
2710
2806
  license_type_id?: string | null;
2711
2807
  /**
@@ -2822,7 +2918,11 @@ export declare namespace PriceCreateParams {
2822
2918
  */
2823
2919
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2824
2920
  /**
2825
- * The ID of the license type to associate with this price.
2921
+ * The ID of the license type to associate with this price. On a usage price this
2922
+ * also marks the price as eligible to draw down from that license type's
2923
+ * allocation; a usage price created without it is billed normally. Usage prices
2924
+ * with a license type must use the `unit` model, and only draw down when their
2925
+ * currency matches the allocation's.
2826
2926
  */
2827
2927
  license_type_id?: string | null;
2828
2928
  /**
@@ -2934,7 +3034,11 @@ export declare namespace PriceCreateParams {
2934
3034
  */
2935
3035
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
2936
3036
  /**
2937
- * The ID of the license type to associate with this price.
3037
+ * The ID of the license type to associate with this price. On a usage price this
3038
+ * also marks the price as eligible to draw down from that license type's
3039
+ * allocation; a usage price created without it is billed normally. Usage prices
3040
+ * with a license type must use the `unit` model, and only draw down when their
3041
+ * currency matches the allocation's.
2938
3042
  */
2939
3043
  license_type_id?: string | null;
2940
3044
  /**
@@ -3045,7 +3149,11 @@ export declare namespace PriceCreateParams {
3045
3149
  */
3046
3150
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3047
3151
  /**
3048
- * The ID of the license type to associate with this price.
3152
+ * The ID of the license type to associate with this price. On a usage price this
3153
+ * also marks the price as eligible to draw down from that license type's
3154
+ * allocation; a usage price created without it is billed normally. Usage prices
3155
+ * with a license type must use the `unit` model, and only draw down when their
3156
+ * currency matches the allocation's.
3049
3157
  */
3050
3158
  license_type_id?: string | null;
3051
3159
  /**
@@ -3169,7 +3277,11 @@ export declare namespace PriceCreateParams {
3169
3277
  */
3170
3278
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3171
3279
  /**
3172
- * The ID of the license type to associate with this price.
3280
+ * The ID of the license type to associate with this price. On a usage price this
3281
+ * also marks the price as eligible to draw down from that license type's
3282
+ * allocation; a usage price created without it is billed normally. Usage prices
3283
+ * with a license type must use the `unit` model, and only draw down when their
3284
+ * currency matches the allocation's.
3173
3285
  */
3174
3286
  license_type_id?: string | null;
3175
3287
  /**
@@ -3289,7 +3401,11 @@ export declare namespace PriceCreateParams {
3289
3401
  */
3290
3402
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3291
3403
  /**
3292
- * The ID of the license type to associate with this price.
3404
+ * The ID of the license type to associate with this price. On a usage price this
3405
+ * also marks the price as eligible to draw down from that license type's
3406
+ * allocation; a usage price created without it is billed normally. Usage prices
3407
+ * with a license type must use the `unit` model, and only draw down when their
3408
+ * currency matches the allocation's.
3293
3409
  */
3294
3410
  license_type_id?: string | null;
3295
3411
  /**
@@ -3403,7 +3519,11 @@ export declare namespace PriceCreateParams {
3403
3519
  */
3404
3520
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3405
3521
  /**
3406
- * The ID of the license type to associate with this price.
3522
+ * The ID of the license type to associate with this price. On a usage price this
3523
+ * also marks the price as eligible to draw down from that license type's
3524
+ * allocation; a usage price created without it is billed normally. Usage prices
3525
+ * with a license type must use the `unit` model, and only draw down when their
3526
+ * currency matches the allocation's.
3407
3527
  */
3408
3528
  license_type_id?: string | null;
3409
3529
  /**
@@ -3509,7 +3629,11 @@ export declare namespace PriceCreateParams {
3509
3629
  */
3510
3630
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3511
3631
  /**
3512
- * The ID of the license type to associate with this price.
3632
+ * The ID of the license type to associate with this price. On a usage price this
3633
+ * also marks the price as eligible to draw down from that license type's
3634
+ * allocation; a usage price created without it is billed normally. Usage prices
3635
+ * with a license type must use the `unit` model, and only draw down when their
3636
+ * currency matches the allocation's.
3513
3637
  */
3514
3638
  license_type_id?: string | null;
3515
3639
  /**
@@ -3638,7 +3762,11 @@ export declare namespace PriceCreateParams {
3638
3762
  */
3639
3763
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3640
3764
  /**
3641
- * The ID of the license type to associate with this price.
3765
+ * The ID of the license type to associate with this price. On a usage price this
3766
+ * also marks the price as eligible to draw down from that license type's
3767
+ * allocation; a usage price created without it is billed normally. Usage prices
3768
+ * with a license type must use the `unit` model, and only draw down when their
3769
+ * currency matches the allocation's.
3642
3770
  */
3643
3771
  license_type_id?: string | null;
3644
3772
  /**
@@ -3757,7 +3885,11 @@ export declare namespace PriceCreateParams {
3757
3885
  */
3758
3886
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3759
3887
  /**
3760
- * The ID of the license type to associate with this price.
3888
+ * The ID of the license type to associate with this price. On a usage price this
3889
+ * also marks the price as eligible to draw down from that license type's
3890
+ * allocation; a usage price created without it is billed normally. Usage prices
3891
+ * with a license type must use the `unit` model, and only draw down when their
3892
+ * currency matches the allocation's.
3761
3893
  */
3762
3894
  license_type_id?: string | null;
3763
3895
  /**
@@ -3855,7 +3987,11 @@ export declare namespace PriceCreateParams {
3855
3987
  */
3856
3988
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3857
3989
  /**
3858
- * The ID of the license type to associate with this price.
3990
+ * The ID of the license type to associate with this price. On a usage price this
3991
+ * also marks the price as eligible to draw down from that license type's
3992
+ * allocation; a usage price created without it is billed normally. Usage prices
3993
+ * with a license type must use the `unit` model, and only draw down when their
3994
+ * currency matches the allocation's.
3859
3995
  */
3860
3996
  license_type_id?: string | null;
3861
3997
  /**
@@ -3963,7 +4099,11 @@ export declare namespace PriceCreateParams {
3963
4099
  */
3964
4100
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
3965
4101
  /**
3966
- * The ID of the license type to associate with this price.
4102
+ * The ID of the license type to associate with this price. On a usage price this
4103
+ * also marks the price as eligible to draw down from that license type's
4104
+ * allocation; a usage price created without it is billed normally. Usage prices
4105
+ * with a license type must use the `unit` model, and only draw down when their
4106
+ * currency matches the allocation's.
3967
4107
  */
3968
4108
  license_type_id?: string | null;
3969
4109
  /**
@@ -4175,7 +4315,11 @@ export declare namespace PriceEvaluateMultipleParams {
4175
4315
  */
4176
4316
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4177
4317
  /**
4178
- * The ID of the license type to associate with this price.
4318
+ * The ID of the license type to associate with this price. On a usage price this
4319
+ * also marks the price as eligible to draw down from that license type's
4320
+ * allocation; a usage price created without it is billed normally. Usage prices
4321
+ * with a license type must use the `unit` model, and only draw down when their
4322
+ * currency matches the allocation's.
4179
4323
  */
4180
4324
  license_type_id?: string | null;
4181
4325
  /**
@@ -4301,7 +4445,11 @@ export declare namespace PriceEvaluateMultipleParams {
4301
4445
  */
4302
4446
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4303
4447
  /**
4304
- * The ID of the license type to associate with this price.
4448
+ * The ID of the license type to associate with this price. On a usage price this
4449
+ * also marks the price as eligible to draw down from that license type's
4450
+ * allocation; a usage price created without it is billed normally. Usage prices
4451
+ * with a license type must use the `unit` model, and only draw down when their
4452
+ * currency matches the allocation's.
4305
4453
  */
4306
4454
  license_type_id?: string | null;
4307
4455
  /**
@@ -4420,7 +4568,11 @@ export declare namespace PriceEvaluateMultipleParams {
4420
4568
  */
4421
4569
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4422
4570
  /**
4423
- * The ID of the license type to associate with this price.
4571
+ * The ID of the license type to associate with this price. On a usage price this
4572
+ * also marks the price as eligible to draw down from that license type's
4573
+ * allocation; a usage price created without it is billed normally. Usage prices
4574
+ * with a license type must use the `unit` model, and only draw down when their
4575
+ * currency matches the allocation's.
4424
4576
  */
4425
4577
  license_type_id?: string | null;
4426
4578
  /**
@@ -4553,7 +4705,11 @@ export declare namespace PriceEvaluateMultipleParams {
4553
4705
  */
4554
4706
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4555
4707
  /**
4556
- * The ID of the license type to associate with this price.
4708
+ * The ID of the license type to associate with this price. On a usage price this
4709
+ * also marks the price as eligible to draw down from that license type's
4710
+ * allocation; a usage price created without it is billed normally. Usage prices
4711
+ * with a license type must use the `unit` model, and only draw down when their
4712
+ * currency matches the allocation's.
4557
4713
  */
4558
4714
  license_type_id?: string | null;
4559
4715
  /**
@@ -4659,7 +4815,11 @@ export declare namespace PriceEvaluateMultipleParams {
4659
4815
  */
4660
4816
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4661
4817
  /**
4662
- * The ID of the license type to associate with this price.
4818
+ * The ID of the license type to associate with this price. On a usage price this
4819
+ * also marks the price as eligible to draw down from that license type's
4820
+ * allocation; a usage price created without it is billed normally. Usage prices
4821
+ * with a license type must use the `unit` model, and only draw down when their
4822
+ * currency matches the allocation's.
4663
4823
  */
4664
4824
  license_type_id?: string | null;
4665
4825
  /**
@@ -4765,7 +4925,11 @@ export declare namespace PriceEvaluateMultipleParams {
4765
4925
  */
4766
4926
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4767
4927
  /**
4768
- * The ID of the license type to associate with this price.
4928
+ * The ID of the license type to associate with this price. On a usage price this
4929
+ * also marks the price as eligible to draw down from that license type's
4930
+ * allocation; a usage price created without it is billed normally. Usage prices
4931
+ * with a license type must use the `unit` model, and only draw down when their
4932
+ * currency matches the allocation's.
4769
4933
  */
4770
4934
  license_type_id?: string | null;
4771
4935
  /**
@@ -4894,7 +5058,11 @@ export declare namespace PriceEvaluateMultipleParams {
4894
5058
  */
4895
5059
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
4896
5060
  /**
4897
- * The ID of the license type to associate with this price.
5061
+ * The ID of the license type to associate with this price. On a usage price this
5062
+ * also marks the price as eligible to draw down from that license type's
5063
+ * allocation; a usage price created without it is billed normally. Usage prices
5064
+ * with a license type must use the `unit` model, and only draw down when their
5065
+ * currency matches the allocation's.
4898
5066
  */
4899
5067
  license_type_id?: string | null;
4900
5068
  /**
@@ -5013,7 +5181,11 @@ export declare namespace PriceEvaluateMultipleParams {
5013
5181
  */
5014
5182
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5015
5183
  /**
5016
- * The ID of the license type to associate with this price.
5184
+ * The ID of the license type to associate with this price. On a usage price this
5185
+ * also marks the price as eligible to draw down from that license type's
5186
+ * allocation; a usage price created without it is billed normally. Usage prices
5187
+ * with a license type must use the `unit` model, and only draw down when their
5188
+ * currency matches the allocation's.
5017
5189
  */
5018
5190
  license_type_id?: string | null;
5019
5191
  /**
@@ -5121,7 +5293,11 @@ export declare namespace PriceEvaluateMultipleParams {
5121
5293
  */
5122
5294
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5123
5295
  /**
5124
- * The ID of the license type to associate with this price.
5296
+ * The ID of the license type to associate with this price. On a usage price this
5297
+ * also marks the price as eligible to draw down from that license type's
5298
+ * allocation; a usage price created without it is billed normally. Usage prices
5299
+ * with a license type must use the `unit` model, and only draw down when their
5300
+ * currency matches the allocation's.
5125
5301
  */
5126
5302
  license_type_id?: string | null;
5127
5303
  /**
@@ -5317,7 +5493,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5317
5493
  */
5318
5494
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5319
5495
  /**
5320
- * The ID of the license type to associate with this price.
5496
+ * The ID of the license type to associate with this price. On a usage price this
5497
+ * also marks the price as eligible to draw down from that license type's
5498
+ * allocation; a usage price created without it is billed normally. Usage prices
5499
+ * with a license type must use the `unit` model, and only draw down when their
5500
+ * currency matches the allocation's.
5321
5501
  */
5322
5502
  license_type_id?: string | null;
5323
5503
  /**
@@ -5443,7 +5623,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5443
5623
  */
5444
5624
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5445
5625
  /**
5446
- * The ID of the license type to associate with this price.
5626
+ * The ID of the license type to associate with this price. On a usage price this
5627
+ * also marks the price as eligible to draw down from that license type's
5628
+ * allocation; a usage price created without it is billed normally. Usage prices
5629
+ * with a license type must use the `unit` model, and only draw down when their
5630
+ * currency matches the allocation's.
5447
5631
  */
5448
5632
  license_type_id?: string | null;
5449
5633
  /**
@@ -5562,7 +5746,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5562
5746
  */
5563
5747
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5564
5748
  /**
5565
- * The ID of the license type to associate with this price.
5749
+ * The ID of the license type to associate with this price. On a usage price this
5750
+ * also marks the price as eligible to draw down from that license type's
5751
+ * allocation; a usage price created without it is billed normally. Usage prices
5752
+ * with a license type must use the `unit` model, and only draw down when their
5753
+ * currency matches the allocation's.
5566
5754
  */
5567
5755
  license_type_id?: string | null;
5568
5756
  /**
@@ -5695,7 +5883,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5695
5883
  */
5696
5884
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5697
5885
  /**
5698
- * The ID of the license type to associate with this price.
5886
+ * The ID of the license type to associate with this price. On a usage price this
5887
+ * also marks the price as eligible to draw down from that license type's
5888
+ * allocation; a usage price created without it is billed normally. Usage prices
5889
+ * with a license type must use the `unit` model, and only draw down when their
5890
+ * currency matches the allocation's.
5699
5891
  */
5700
5892
  license_type_id?: string | null;
5701
5893
  /**
@@ -5801,7 +5993,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5801
5993
  */
5802
5994
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5803
5995
  /**
5804
- * The ID of the license type to associate with this price.
5996
+ * The ID of the license type to associate with this price. On a usage price this
5997
+ * also marks the price as eligible to draw down from that license type's
5998
+ * allocation; a usage price created without it is billed normally. Usage prices
5999
+ * with a license type must use the `unit` model, and only draw down when their
6000
+ * currency matches the allocation's.
5805
6001
  */
5806
6002
  license_type_id?: string | null;
5807
6003
  /**
@@ -5907,7 +6103,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
5907
6103
  */
5908
6104
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
5909
6105
  /**
5910
- * The ID of the license type to associate with this price.
6106
+ * The ID of the license type to associate with this price. On a usage price this
6107
+ * also marks the price as eligible to draw down from that license type's
6108
+ * allocation; a usage price created without it is billed normally. Usage prices
6109
+ * with a license type must use the `unit` model, and only draw down when their
6110
+ * currency matches the allocation's.
5911
6111
  */
5912
6112
  license_type_id?: string | null;
5913
6113
  /**
@@ -6036,7 +6236,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
6036
6236
  */
6037
6237
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
6038
6238
  /**
6039
- * The ID of the license type to associate with this price.
6239
+ * The ID of the license type to associate with this price. On a usage price this
6240
+ * also marks the price as eligible to draw down from that license type's
6241
+ * allocation; a usage price created without it is billed normally. Usage prices
6242
+ * with a license type must use the `unit` model, and only draw down when their
6243
+ * currency matches the allocation's.
6040
6244
  */
6041
6245
  license_type_id?: string | null;
6042
6246
  /**
@@ -6155,7 +6359,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
6155
6359
  */
6156
6360
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
6157
6361
  /**
6158
- * The ID of the license type to associate with this price.
6362
+ * The ID of the license type to associate with this price. On a usage price this
6363
+ * also marks the price as eligible to draw down from that license type's
6364
+ * allocation; a usage price created without it is billed normally. Usage prices
6365
+ * with a license type must use the `unit` model, and only draw down when their
6366
+ * currency matches the allocation's.
6159
6367
  */
6160
6368
  license_type_id?: string | null;
6161
6369
  /**
@@ -6263,7 +6471,11 @@ export declare namespace PriceEvaluatePreviewEventsParams {
6263
6471
  */
6264
6472
  invoicing_cycle_configuration?: Shared.NewBillingCycleConfiguration | null;
6265
6473
  /**
6266
- * The ID of the license type to associate with this price.
6474
+ * The ID of the license type to associate with this price. On a usage price this
6475
+ * also marks the price as eligible to draw down from that license type's
6476
+ * allocation; a usage price created without it is billed normally. Usage prices
6477
+ * with a license type must use the `unit` model, and only draw down when their
6478
+ * currency matches the allocation's.
6267
6479
  */
6268
6480
  license_type_id?: string | null;
6269
6481
  /**