[][src]Struct stripe::SubscriptionItem

pub struct SubscriptionItem {
    pub id: SubscriptionItemId,
    pub billing_thresholds: Option<SubscriptionItemBillingThresholds>,
    pub created: Option<Timestamp>,
    pub deleted: bool,
    pub metadata: Metadata,
    pub plan: Option<Plan>,
    pub quantity: Option<u64>,
    pub subscription: Option<String>,
    pub tax_rates: Option<Vec<TaxRate>>,
}

The resource representing a Stripe "SubscriptionItem".

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

Fields

id: SubscriptionItemId

Unique identifier for the object.

billing_thresholds: Option<SubscriptionItemBillingThresholds>

Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period.

created: Option<Timestamp>

Time at which the object was created.

Measured in seconds since the Unix epoch.

deleted: boolmetadata: 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.

plan: Option<Plan>quantity: Option<u64>

The quantity of the plan to which the customer should be subscribed.

subscription: Option<String>

The subscription this subscription_item belongs to.

tax_rates: Option<Vec<TaxRate>>

The tax rates which apply to this subscription_item.

When set, the default_tax_rates on the subscription do not apply to this subscription_item.

Methods

impl SubscriptionItem[src]

pub fn list(
    client: &Client,
    params: ListSubscriptionItems
) -> Response<List<SubscriptionItem>>
[src]

Returns a list of your subscription items for a given subscription.

pub fn retrieve(
    client: &Client,
    id: &SubscriptionItemId,
    expand: &[&str]
) -> Response<SubscriptionItem>
[src]

Retrieves the invoice item with the given ID.

pub fn update(
    client: &Client,
    id: &SubscriptionItemId,
    params: UpdateSubscriptionItem
) -> Response<SubscriptionItem>
[src]

Updates the plan or quantity of an item on a current subscription.

pub fn delete(
    client: &Client,
    id: &SubscriptionItemId
) -> Response<Deleted<SubscriptionItemId>>
[src]

Deletes an item from the subscription.

Removing a subscription item from a subscription will not cancel the subscription.

Trait Implementations

impl Object for SubscriptionItem[src]

type Id = SubscriptionItemId

The canonical id type for this object.

impl Clone for SubscriptionItem[src]

impl Debug for SubscriptionItem[src]

impl Serialize for SubscriptionItem[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self