You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -205,7 +207,7 @@ class DiscountAmount(StripeObject):
205
207
"""
206
208
Quantity of units for the invoice item in integer format, with any decimal precision truncated. For the item's full-precision decimal quantity, use `quantity_decimal`. This field will be deprecated in favor of `quantity_decimal` in a future version. If the invoice item is a proration, the quantity of the subscription that the proration was computed for.
207
209
"""
208
-
quantity_decimal: str
210
+
quantity_decimal: Decimal
209
211
"""
210
212
Non-negative decimal with at most 12 decimal places. The quantity of units for the invoice item.
@@ -325,7 +327,7 @@ class TaxRateDetails(StripeObject):
325
327
"""
326
328
Quantity of units for the invoice line item in integer format, with any decimal precision truncated. For the line item's full-precision decimal quantity, use `quantity_decimal`. This field will be deprecated in favor of `quantity_decimal` in a future version. If the line item is a proration or subscription, the quantity of the subscription that the proration was computed for.
327
329
"""
328
-
quantity_decimal: Optional[str]
330
+
quantity_decimal: Optional[Decimal]
329
331
"""
330
332
Non-negative decimal with at most 12 decimal places. The quantity of units for the line item.
0 commit comments