1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
|
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._expandable_field import ExpandableField
from stripe._request_options import RequestOptions
from stripe._stripe_object import StripeObject
from stripe._updateable_api_resource import UpdateableAPIResource
from stripe._util import sanitize_id
from typing import ClassVar, Dict, List, Optional, cast
from typing_extensions import (
Literal,
NotRequired,
TypedDict,
Unpack,
TYPE_CHECKING,
)
if TYPE_CHECKING:
from stripe._discount import Discount
from stripe._subscription import Subscription
from stripe.billing._credit_balance_transaction import (
CreditBalanceTransaction,
)
class InvoiceLineItem(UpdateableAPIResource["InvoiceLineItem"]):
"""
Invoice Line Items represent the individual lines within an [invoice](https://stripe.com/docs/api/invoices) and only exist within the context of an invoice.
Each line item is backed by either an [invoice item](https://stripe.com/docs/api/invoiceitems) or a [subscription item](https://stripe.com/docs/api/subscription_items).
"""
OBJECT_NAME: ClassVar[Literal["line_item"]] = "line_item"
class DiscountAmount(StripeObject):
amount: int
"""
The amount, in cents (or local equivalent), of the discount.
"""
discount: ExpandableField["Discount"]
"""
The discount that was applied to get this discount amount.
"""
class Parent(StripeObject):
class InvoiceItemDetails(StripeObject):
class ProrationDetails(StripeObject):
class CreditedItems(StripeObject):
invoice: str
"""
Invoice containing the credited invoice line items
"""
invoice_line_items: List[str]
"""
Credited invoice line items
"""
credited_items: Optional[CreditedItems]
"""
For a credit proration `line_item`, the original debit line_items to which the credit proration applies.
"""
_inner_class_types = {"credited_items": CreditedItems}
invoice_item: str
"""
The invoice item that generated this line item
"""
proration: bool
"""
Whether this is a proration
"""
proration_details: Optional[ProrationDetails]
"""
Additional details for proration line items
"""
subscription: Optional[str]
"""
The subscription that the invoice item belongs to
"""
_inner_class_types = {"proration_details": ProrationDetails}
class SubscriptionItemDetails(StripeObject):
class ProrationDetails(StripeObject):
class CreditedItems(StripeObject):
invoice: str
"""
Invoice containing the credited invoice line items
"""
invoice_line_items: List[str]
"""
Credited invoice line items
"""
credited_items: Optional[CreditedItems]
"""
For a credit proration `line_item`, the original debit line_items to which the credit proration applies.
"""
_inner_class_types = {"credited_items": CreditedItems}
invoice_item: Optional[str]
"""
The invoice item that generated this line item
"""
proration: bool
"""
Whether this is a proration
"""
proration_details: Optional[ProrationDetails]
"""
Additional details for proration line items
"""
subscription: str
"""
The subscription that the subscription item belongs to
"""
subscription_item: str
"""
The subscription item that generated this line item
"""
_inner_class_types = {"proration_details": ProrationDetails}
invoice_item_details: Optional[InvoiceItemDetails]
"""
Details about the invoice item that generated this line item
"""
subscription_item_details: Optional[SubscriptionItemDetails]
"""
Details about the subscription item that generated this line item
"""
type: Literal["invoice_item_details", "subscription_item_details"]
"""
The type of parent that generated this line item
"""
_inner_class_types = {
"invoice_item_details": InvoiceItemDetails,
"subscription_item_details": SubscriptionItemDetails,
}
class Period(StripeObject):
end: int
"""
The end of the period, which must be greater than or equal to the start. This value is inclusive.
"""
start: int
"""
The start of the period. This value is inclusive.
"""
class PretaxCreditAmount(StripeObject):
amount: int
"""
The amount, in cents (or local equivalent), of the pretax credit amount.
"""
credit_balance_transaction: Optional[
ExpandableField["CreditBalanceTransaction"]
]
"""
The credit balance transaction that was applied to get this pretax credit amount.
"""
discount: Optional[ExpandableField["Discount"]]
"""
The discount that was applied to get this pretax credit amount.
"""
type: Literal["credit_balance_transaction", "discount"]
"""
Type of the pretax credit amount referenced.
"""
class Pricing(StripeObject):
class PriceDetails(StripeObject):
price: str
"""
The ID of the price this item is associated with.
"""
product: str
"""
The ID of the product this item is associated with.
"""
price_details: Optional[PriceDetails]
type: Literal["price_details"]
"""
The type of the pricing details.
"""
unit_amount_decimal: Optional[str]
"""
The unit amount (in the `currency` specified) of the item which contains a decimal value with at most 12 decimal places.
"""
_inner_class_types = {"price_details": PriceDetails}
class Tax(StripeObject):
class TaxRateDetails(StripeObject):
tax_rate: str
amount: int
"""
The amount of the tax, in cents (or local equivalent).
"""
tax_behavior: Literal["exclusive", "inclusive"]
"""
Whether this tax is inclusive or exclusive.
"""
tax_rate_details: Optional[TaxRateDetails]
"""
Additional details about the tax rate. Only present when `type` is `tax_rate_details`.
"""
taxability_reason: Literal[
"customer_exempt",
"not_available",
"not_collecting",
"not_subject_to_tax",
"not_supported",
"portion_product_exempt",
"portion_reduced_rated",
"portion_standard_rated",
"product_exempt",
"product_exempt_holiday",
"proportionally_rated",
"reduced_rated",
"reverse_charge",
"standard_rated",
"taxable_basis_reduced",
"zero_rated",
]
"""
The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
"""
taxable_amount: Optional[int]
"""
The amount on which tax is calculated, in cents (or local equivalent).
"""
type: Literal["tax_rate_details"]
"""
The type of tax information.
"""
_inner_class_types = {"tax_rate_details": TaxRateDetails}
class ModifyParams(RequestOptions):
amount: NotRequired[int]
"""
The integer amount in cents (or local equivalent) of the charge to be applied to the upcoming invoice. If you want to apply a credit to the customer's account, pass a negative amount.
"""
description: NotRequired[str]
"""
An arbitrary string which you can attach to the invoice item. The description is displayed in the invoice for easy tracking.
"""
discountable: NotRequired[bool]
"""
Controls whether discounts apply to this line item. Defaults to false for prorations or negative line items, and true for all other line items. Cannot be set to true for prorations.
"""
discounts: NotRequired[
"Literal['']|List[InvoiceLineItem.ModifyParamsDiscount]"
]
"""
The coupons, promotion codes & existing discounts which apply to the line item. Item discounts are applied before invoice discounts. Pass an empty string to remove previously-defined discounts.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
metadata: NotRequired["Literal['']|Dict[str, str]"]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`. For [type=subscription](https://stripe.com/docs/api/invoices/line_item#invoice_line_item_object-type) line items, the incoming metadata specified on the request is directly used to set this value, in contrast to [type=invoiceitem](api/invoices/line_item#invoice_line_item_object-type) line items, where any existing metadata on the invoice line is merged with the incoming data.
"""
period: NotRequired["InvoiceLineItem.ModifyParamsPeriod"]
"""
The period associated with this invoice item. When set to different values, the period will be rendered on the invoice. If you have [Stripe Revenue Recognition](https://stripe.com/docs/revenue-recognition) enabled, the period will be used to recognize and defer revenue. See the [Revenue Recognition documentation](https://stripe.com/docs/revenue-recognition/methodology/subscriptions-and-invoicing) for details.
"""
price_data: NotRequired["InvoiceLineItem.ModifyParamsPriceData"]
"""
Data used to generate a new [Price](https://stripe.com/docs/api/prices) object inline.
"""
pricing: NotRequired["InvoiceLineItem.ModifyParamsPricing"]
"""
The pricing information for the invoice item.
"""
quantity: NotRequired[int]
"""
Non-negative integer. The quantity of units for the line item.
"""
tax_amounts: NotRequired[
"Literal['']|List[InvoiceLineItem.ModifyParamsTaxAmount]"
]
"""
A list of up to 10 tax amounts for this line item. This can be useful if you calculate taxes on your own or use a third-party to calculate them. You cannot set tax amounts if any line item has [tax_rates](https://stripe.com/docs/api/invoices/line_item#invoice_line_item_object-tax_rates) or if the invoice has [default_tax_rates](https://stripe.com/docs/api/invoices/object#invoice_object-default_tax_rates) or uses [automatic tax](https://stripe.com/docs/tax/invoicing). Pass an empty string to remove previously defined tax amounts.
"""
tax_rates: NotRequired["Literal['']|List[str]"]
"""
The tax rates which apply to the line item. When set, the `default_tax_rates` on the invoice do not apply to this line item. Pass an empty string to remove previously-defined tax rates.
"""
class ModifyParamsDiscount(TypedDict):
coupon: NotRequired[str]
"""
ID of the coupon to create a new discount for.
"""
discount: NotRequired[str]
"""
ID of an existing discount on the object (or one of its ancestors) to reuse.
"""
promotion_code: NotRequired[str]
"""
ID of the promotion code to create a new discount for.
"""
class ModifyParamsPeriod(TypedDict):
end: int
"""
The end of the period, which must be greater than or equal to the start. This value is inclusive.
"""
start: int
"""
The start of the period. This value is inclusive.
"""
class ModifyParamsPriceData(TypedDict):
currency: str
"""
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
"""
product: NotRequired[str]
"""
The ID of the [Product](https://docs.stripe.com/api/products) that this [Price](https://docs.stripe.com/api/prices) will belong to. One of `product` or `product_data` is required.
"""
product_data: NotRequired[
"InvoiceLineItem.ModifyParamsPriceDataProductData"
]
"""
Data used to generate a new [Product](https://docs.stripe.com/api/products) object inline. One of `product` or `product_data` is required.
"""
tax_behavior: NotRequired[
Literal["exclusive", "inclusive", "unspecified"]
]
"""
Only required if a [default tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.
"""
unit_amount: NotRequired[int]
"""
A non-negative integer in cents (or local equivalent) representing how much to charge. One of `unit_amount` or `unit_amount_decimal` is required.
"""
unit_amount_decimal: NotRequired[str]
"""
Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set.
"""
class ModifyParamsPriceDataProductData(TypedDict):
description: NotRequired[str]
"""
The product's description, meant to be displayable to the customer. Use this field to optionally store a long form explanation of the product being sold for your own rendering purposes.
"""
images: NotRequired[List[str]]
"""
A list of up to 8 URLs of images for this product, meant to be displayable to the customer.
"""
metadata: NotRequired[Dict[str, str]]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
"""
name: str
"""
The product's name, meant to be displayable to the customer.
"""
tax_code: NotRequired[str]
"""
A [tax code](https://stripe.com/docs/tax/tax-categories) ID.
"""
class ModifyParamsPricing(TypedDict):
price: NotRequired[str]
"""
The ID of the price object.
"""
class ModifyParamsTaxAmount(TypedDict):
amount: int
"""
The amount, in cents (or local equivalent), of the tax.
"""
tax_rate_data: "InvoiceLineItem.ModifyParamsTaxAmountTaxRateData"
"""
Data to find or create a TaxRate object.
Stripe automatically creates or reuses a TaxRate object for each tax amount. If the `tax_rate_data` exactly matches a previous value, Stripe will reuse the TaxRate object. TaxRate objects created automatically by Stripe are immediately archived, do not appear in the line item's `tax_rates`, and cannot be directly added to invoices, payments, or line items.
"""
taxability_reason: NotRequired[
Literal[
"customer_exempt",
"not_collecting",
"not_subject_to_tax",
"not_supported",
"portion_product_exempt",
"portion_reduced_rated",
"portion_standard_rated",
"product_exempt",
"product_exempt_holiday",
"proportionally_rated",
"reduced_rated",
"reverse_charge",
"standard_rated",
"taxable_basis_reduced",
"zero_rated",
]
]
"""
The reasoning behind this tax, for example, if the product is tax exempt.
"""
taxable_amount: int
"""
The amount on which tax is calculated, in cents (or local equivalent).
"""
class ModifyParamsTaxAmountTaxRateData(TypedDict):
country: NotRequired[str]
"""
Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
"""
description: NotRequired[str]
"""
An arbitrary string attached to the tax rate for your internal use only. It will not be visible to your customers.
"""
display_name: str
"""
The display name of the tax rate, which will be shown to users.
"""
inclusive: bool
"""
This specifies if the tax rate is inclusive or exclusive.
"""
jurisdiction: NotRequired[str]
"""
The jurisdiction for the tax rate. You can use this label field for tax reporting purposes. It also appears on your customer's invoice.
"""
jurisdiction_level: NotRequired[
Literal[
"city", "country", "county", "district", "multiple", "state"
]
]
"""
The level of the jurisdiction that imposes this tax rate.
"""
percentage: float
"""
The statutory tax rate percent. This field accepts decimal values between 0 and 100 inclusive with at most 4 decimal places. To accommodate fixed-amount taxes, set the percentage to zero. Stripe will not display zero percentages on the invoice unless the `amount` of the tax is also zero.
"""
state: NotRequired[str]
"""
[ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States.
"""
tax_type: NotRequired[
Literal[
"amusement_tax",
"communications_tax",
"gst",
"hst",
"igst",
"jct",
"lease_tax",
"pst",
"qst",
"retail_delivery_fee",
"rst",
"sales_tax",
"service_tax",
"vat",
]
]
"""
The high-level tax type, such as `vat` or `sales_tax`.
"""
amount: int
"""
The amount, in cents (or local equivalent).
"""
currency: str
"""
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
"""
description: Optional[str]
"""
An arbitrary string attached to the object. Often useful for displaying to users.
"""
discount_amounts: Optional[List[DiscountAmount]]
"""
The amount of discount calculated per discount for this line item.
"""
discountable: bool
"""
If true, discounts will apply to this line item. Always false for prorations.
"""
discounts: List[ExpandableField["Discount"]]
"""
The discounts applied to the invoice line item. Line item discounts are applied before invoice discounts. Use `expand[]=discounts` to expand each discount.
"""
id: str
"""
Unique identifier for the object.
"""
invoice: Optional[str]
"""
The ID of the invoice that contains this line item.
"""
livemode: bool
"""
Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
"""
metadata: Dict[str, str]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription`, `metadata` reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
"""
object: Literal["line_item"]
"""
String representing the object's type. Objects of the same type share the same value.
"""
parent: Optional[Parent]
"""
The parent that generated this invoice
"""
period: Period
pretax_credit_amounts: Optional[List[PretaxCreditAmount]]
"""
Contains pretax credit amounts (ex: discount, credit grants, etc) that apply to this line item.
"""
pricing: Optional[Pricing]
"""
The pricing information of the line item.
"""
quantity: Optional[int]
"""
The quantity of the subscription, if the line item is a subscription or a proration.
"""
subscription: Optional[ExpandableField["Subscription"]]
taxes: Optional[List[Tax]]
"""
The tax information of the line item.
"""
@classmethod
def modify(
cls, id: str, **params: Unpack["InvoiceLineItem.ModifyParams"]
) -> "InvoiceLineItem":
"""
Updates an invoice's line item. Some fields, such as tax_amounts, only live on the invoice line item,
so they can only be updated through this endpoint. Other fields, such as amount, live on both the invoice
item and the invoice line item, so updates on this endpoint will propagate to the invoice item as well.
Updating an invoice's line item is only possible before the invoice is finalized.
"""
url = "%s/%s" % (cls.class_url(), sanitize_id(id))
return cast(
"InvoiceLineItem",
cls._static_request(
"post",
url,
params=params,
),
)
@classmethod
async def modify_async(
cls, id: str, **params: Unpack["InvoiceLineItem.ModifyParams"]
) -> "InvoiceLineItem":
"""
Updates an invoice's line item. Some fields, such as tax_amounts, only live on the invoice line item,
so they can only be updated through this endpoint. Other fields, such as amount, live on both the invoice
item and the invoice line item, so updates on this endpoint will propagate to the invoice item as well.
Updating an invoice's line item is only possible before the invoice is finalized.
"""
url = "%s/%s" % (cls.class_url(), sanitize_id(id))
return cast(
"InvoiceLineItem",
await cls._static_request_async(
"post",
url,
params=params,
),
)
_inner_class_types = {
"discount_amounts": DiscountAmount,
"parent": Parent,
"period": Period,
"pretax_credit_amounts": PretaxCreditAmount,
"pricing": Pricing,
"taxes": Tax,
}
|