@@ -105,6 +105,9 @@ class PriceNewPlanUnitPrice(TypedDict, total=False):
105105 this is true, and in-arrears if this is false.
106106 """
107107
108+ conversion_rate : Optional [float ]
109+ """The per unit conversion rate of the price currency to the invoicing currency."""
110+
108111 currency : Optional [str ]
109112 """
110113 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -128,7 +131,7 @@ class PriceNewPlanPackagePricePackageConfig(TypedDict, total=False):
128131 package_amount : Required [str ]
129132 """A currency amount to rate usage by"""
130133
131- package_size : Optional [int ]
134+ package_size : Required [int ]
132135 """An integer amount to represent package size.
133136
134137 For example, 1000 here would divide usage by 1000 before multiplying by
@@ -162,6 +165,9 @@ class PriceNewPlanPackagePrice(TypedDict, total=False):
162165 this is true, and in-arrears if this is false.
163166 """
164167
168+ conversion_rate : Optional [float ]
169+ """The per unit conversion rate of the price currency to the invoicing currency."""
170+
165171 currency : Optional [str ]
166172 """
167173 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -230,6 +236,9 @@ class PriceNewPlanMatrixPrice(TypedDict, total=False):
230236 this is true, and in-arrears if this is false.
231237 """
232238
239+ conversion_rate : Optional [float ]
240+ """The per unit conversion rate of the price currency to the invoicing currency."""
241+
233242 currency : Optional [str ]
234243 """
235244 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -291,6 +300,9 @@ class PriceNewPlanTieredPrice(TypedDict, total=False):
291300 this is true, and in-arrears if this is false.
292301 """
293302
303+ conversion_rate : Optional [float ]
304+ """The per unit conversion rate of the price currency to the invoicing currency."""
305+
294306 currency : Optional [str ]
295307 """
296308 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -358,6 +370,9 @@ class PriceNewPlanTieredBpsPrice(TypedDict, total=False):
358370 this is true, and in-arrears if this is false.
359371 """
360372
373+ conversion_rate : Optional [float ]
374+ """The per unit conversion rate of the price currency to the invoicing currency."""
375+
361376 currency : Optional [str ]
362377 """
363378 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -411,6 +426,9 @@ class PriceNewPlanBpsPrice(TypedDict, total=False):
411426 this is true, and in-arrears if this is false.
412427 """
413428
429+ conversion_rate : Optional [float ]
430+ """The per unit conversion rate of the price currency to the invoicing currency."""
431+
414432 currency : Optional [str ]
415433 """
416434 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -475,6 +493,9 @@ class PriceNewPlanBulkBpsPrice(TypedDict, total=False):
475493 this is true, and in-arrears if this is false.
476494 """
477495
496+ conversion_rate : Optional [float ]
497+ """The per unit conversion rate of the price currency to the invoicing currency."""
498+
478499 currency : Optional [str ]
479500 """
480501 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -533,6 +554,9 @@ class PriceNewPlanBulkPrice(TypedDict, total=False):
533554 this is true, and in-arrears if this is false.
534555 """
535556
557+ conversion_rate : Optional [float ]
558+ """The per unit conversion rate of the price currency to the invoicing currency."""
559+
536560 currency : Optional [str ]
537561 """
538562 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -578,6 +602,9 @@ class PriceNewPlanThresholdTotalAmountPrice(TypedDict, total=False):
578602 this is true, and in-arrears if this is false.
579603 """
580604
605+ conversion_rate : Optional [float ]
606+ """The per unit conversion rate of the price currency to the invoicing currency."""
607+
581608 currency : Optional [str ]
582609 """
583610 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -623,6 +650,9 @@ class PriceNewPlanTieredPackagePrice(TypedDict, total=False):
623650 this is true, and in-arrears if this is false.
624651 """
625652
653+ conversion_rate : Optional [float ]
654+ """The per unit conversion rate of the price currency to the invoicing currency."""
655+
626656 currency : Optional [str ]
627657 """
628658 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -668,6 +698,9 @@ class PriceNewPlanTieredWithMinimumPrice(TypedDict, total=False):
668698 this is true, and in-arrears if this is false.
669699 """
670700
701+ conversion_rate : Optional [float ]
702+ """The per unit conversion rate of the price currency to the invoicing currency."""
703+
671704 currency : Optional [str ]
672705 """
673706 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -713,6 +746,9 @@ class PriceNewPlanUnitWithPercentPrice(TypedDict, total=False):
713746 this is true, and in-arrears if this is false.
714747 """
715748
749+ conversion_rate : Optional [float ]
750+ """The per unit conversion rate of the price currency to the invoicing currency."""
751+
716752 currency : Optional [str ]
717753 """
718754 An ISO 4217 currency string, or custom pricing unit identifier, in which this
@@ -758,6 +794,9 @@ class PriceNewPlanPackageWithAllocationPrice(TypedDict, total=False):
758794 this is true, and in-arrears if this is false.
759795 """
760796
797+ conversion_rate : Optional [float ]
798+ """The per unit conversion rate of the price currency to the invoicing currency."""
799+
761800 currency : Optional [str ]
762801 """
763802 An ISO 4217 currency string, or custom pricing unit identifier, in which this
0 commit comments