pub struct InvoiceItem {
Show 22 fields pub id: InvoiceItemId, pub amount: Option<i64>, pub currency: Option<Currency>, pub customer: Option<Expandable<Customer>>, pub date: Option<Timestamp>, pub deleted: bool, pub description: Option<String>, pub discountable: Option<bool>, pub discounts: Option<Vec<Expandable<Discount>>>, pub invoice: Option<Expandable<Invoice>>, pub livemode: Option<bool>, pub metadata: Metadata, pub period: Option<Period>, pub price: Option<Price>, pub proration: Option<bool>, pub quantity: Option<u64>, pub subscription: Option<Expandable<Subscription>>, pub subscription_item: Option<String>, pub tax_rates: Option<Vec<TaxRate>>, pub test_clock: Option<Expandable<TestHelpersTestClock>>, pub unit_amount: Option<i64>, pub unit_amount_decimal: Option<String>,
}
Expand description

The resource representing a Stripe “InvoiceItem”.

For more details see https://stripe.com/docs/api/invoiceitems/object

Fields

id: InvoiceItemId

Unique identifier for the object.

amount: Option<i64>

Amount (in the currency specified) of the invoice item.

This should always be equal to unit_amount * quantity.

currency: Option<Currency>

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

customer: Option<Expandable<Customer>>

The ID of the customer who will be billed when this invoice item is billed.

date: Option<Timestamp>

Time at which the object was created.

Measured in seconds since the Unix epoch.

deleted: booldescription: Option<String>

An arbitrary string attached to the object.

Often useful for displaying to users.

discountable: Option<bool>

If true, discounts will apply to this invoice item.

Always false for prorations.

discounts: Option<Vec<Expandable<Discount>>>

The discounts which apply to the invoice item.

Item discounts are applied before invoice discounts. Use expand[]=discounts to expand each discount.

invoice: Option<Expandable<Invoice>>

The ID of the invoice this invoice item belongs to.

livemode: Option<bool>

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

period: Option<Period>price: Option<Price>

The price of the invoice item.

proration: Option<bool>

Whether the invoice item was created automatically as a proration adjustment when the customer switched plans.

quantity: Option<u64>

Quantity of units for the invoice item.

If the invoice item is a proration, the quantity of the subscription that the proration was computed for.

subscription: Option<Expandable<Subscription>>

The subscription that this invoice item has been created for, if any.

subscription_item: Option<String>

The subscription item that this invoice item has been created for, if any.

tax_rates: Option<Vec<TaxRate>>

The tax rates which apply to the invoice item.

When set, the default_tax_rates on the invoice do not apply to this invoice item.

test_clock: Option<Expandable<TestHelpersTestClock>>

ID of the test clock this invoice item belongs to.

unit_amount: Option<i64>

Unit amount (in the currency specified) of the invoice item.

unit_amount_decimal: Option<String>

Same as unit_amount, but contains a decimal value with at most 12 decimal places.

Implementations

Returns a list of your invoice items.

Invoice items are returned sorted by creation date, with the most recently created invoice items appearing first.

Creates an item to be added to a draft invoice (up to 250 items per invoice).

If no invoice is specified, the item will be on the next invoice created for the customer specified.

Retrieves the invoice item with the given ID.

Updates the amount or description of an invoice item on an upcoming invoice.

Updating an invoice item is only possible before the invoice it’s attached to is closed.

Deletes an invoice item, removing it from an invoice.

Deleting invoice items is only possible when they’re not attached to invoices, or if it’s attached to a draft invoice.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more