[][src]Struct stripe::InvoiceLineItem

pub struct InvoiceLineItem {
    pub id: String,
    pub amount: i64,
    pub currency: Currency,
    pub description: Option<String>,
    pub discountable: bool,
    pub livemode: bool,
    pub metadata: Metadata,
    pub period: Period,
    pub plan: Option<Plan>,
    pub proration: bool,
    pub quantity: Option<u64>,
    pub subscription: Option<String>,
    pub subscription_item: Option<String>,
    pub item_type: String,
}

The resource representing a Stripe invoice line item.

For more details see https://stripe.com/docs/api#invoice_line_item_object.

Fields

id: Stringamount: i64currency: Currencydescription: Option<String>discountable: boollivemode: boolmetadata: Metadataperiod: Periodplan: Option<Plan>proration: boolquantity: Option<u64>subscription: Option<String>subscription_item: Option<String>item_type: String

Methods

impl InvoiceLineItem[src]

pub fn create(
    client: &Client,
    params: InvoiceLineItemParams
) -> Response<InvoiceLineItem>
[src]

Creates an invoice line item.

For more details see https://stripe.com/docs/api#invoice_line_item_object

Trait Implementations

impl Clone for InvoiceLineItem[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InvoiceLineItem[src]

impl Serialize for InvoiceLineItem[src]

impl<'de> Deserialize<'de> for InvoiceLineItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self