Struct stripe::CreatePrice[][src]

pub struct CreatePrice<'a> {
    pub active: Option<bool>,
    pub billing_scheme: Option<PriceBillingScheme>,
    pub currency: Currency,
    pub expand: &'a [&'a str],
    pub lookup_key: Option<&'a str>,
    pub metadata: Option<Metadata>,
    pub nickname: Option<&'a str>,
    pub product: Option<IdOrCreate<'a, CreateProduct<'a>>>,
    pub product_data: Option<CreatePriceProductData>,
    pub recurring: Option<CreatePriceRecurring>,
    pub tiers: Option<Vec<CreatePriceTiers>>,
    pub tiers_mode: Option<PriceTiersMode>,
    pub transfer_lookup_key: Option<bool>,
    pub transform_quantity: Option<CreatePriceTransformQuantity>,
    pub unit_amount: Option<i64>,
    pub unit_amount_decimal: Option<&'a str>,
}

The parameters for Price::create.

Fields

active: Option<bool>

Whether the price can be used for new purchases.

Defaults to true.

billing_scheme: Option<PriceBillingScheme>

Describes how to compute the price per period.

Either per_unit or tiered. per_unit indicates that the fixed amount (specified in unit_amount or unit_amount_decimal) will be charged per unit in quantity (for prices with usage_type=licensed), or per unit of total usage (for prices with usage_type=metered). tiered indicates that the unit pricing will be computed using a tiering strategy as defined using the tiers and tiers_mode attributes.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

expand: &'a [&'a str]

Specifies which fields in the response should be expanded.

lookup_key: Option<&'a str>

A lookup key used to retrieve prices dynamically from a static string.

metadata: Option<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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.

nickname: Option<&'a str>

A brief description of the price, hidden from customers.

product: Option<IdOrCreate<'a, CreateProduct<'a>>>

The ID of the product that this price will belong to.

product_data: Option<CreatePriceProductData>

These fields can be used to create a new product that this price will belong to.

recurring: Option<CreatePriceRecurring>

The recurring components of a price such as interval and usage_type.

tiers: Option<Vec<CreatePriceTiers>>

Each element represents a pricing tier.

This parameter requires billing_scheme to be set to tiered. See also the documentation for billing_scheme.

tiers_mode: Option<PriceTiersMode>

Defines if the tiering price should be graduated or volume based.

In volume-based tiering, the maximum quantity within a period determines the per unit price, in graduated tiering pricing can successively change as the quantity grows.

transfer_lookup_key: Option<bool>

If set to true, will atomically remove the lookup key from the existing price, and assign it to this price.

transform_quantity: Option<CreatePriceTransformQuantity>

Apply a transformation to the reported usage or set quantity before computing the billed price.

Cannot be combined with tiers.

unit_amount: Option<i64>

A positive integer in %s (or 0 for a free price) representing how much to charge.

unit_amount_decimal: Option<&'a str>

Same as unit_amount, but accepts a decimal value in %s with at most 12 decimal places.

Only one of unit_amount and unit_amount_decimal can be set.

Implementations

impl<'a> CreatePrice<'a>[src]

pub fn new(currency: Currency) -> Self[src]

Trait Implementations

impl<'a> Clone for CreatePrice<'a>[src]

impl<'a> Debug for CreatePrice<'a>[src]

impl<'a> Serialize for CreatePrice<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CreatePrice<'a>[src]

impl<'a> Send for CreatePrice<'a>[src]

impl<'a> Sync for CreatePrice<'a>[src]

impl<'a> Unpin for CreatePrice<'a>[src]

impl<'a> UnwindSafe for CreatePrice<'a>[src]

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]