[][src]Struct stripe_api::resources::billing::plans::Plans

pub struct Plans {
    pub id: String,
    pub object: Object,
    pub active: bool,
    pub aggregate_usage: Option<AggregateUsage>,
    pub amount: Option<i64>,
    pub billing_scheme: Option<BillingScheme>,
    pub created: i64,
    pub currency: Currency,
    pub interval: Interval,
    pub interval_count: i64,
    pub livemode: bool,
    pub metadata: HashMap<String, String>,
    pub nickname: Option<String>,
    pub product: Option<Expandable<Products>>,
    pub tiers: Option<Vec<Tiers>>,
    pub tiers_mode: Option<TiersMode>,
    pub transform_usage: Option<String>,
    pub trial_period_days: Option<i64>,
    pub usage_type: Option<UsageType>,
}

Fields

id: Stringobject: Objectactive: boolaggregate_usage: Option<AggregateUsage>amount: Option<i64>billing_scheme: Option<BillingScheme>created: i64currency: Currencyinterval: Intervalinterval_count: i64livemode: boolmetadata: HashMap<String, String>nickname: Option<String>product: Option<Expandable<Products>>tiers: Option<Vec<Tiers>>tiers_mode: Option<TiersMode>transform_usage: Option<String>trial_period_days: Option<i64>usage_type: Option<UsageType>

Methods

impl Plans[src]

pub fn create<B: Serialize>(client: &Client, param: B) -> Result<Self>[src]

pub fn retrieve(client: &Client, plan: &str) -> Result<Self>[src]

pub fn update<B: Serialize>(
    client: &Client,
    plan: &str,
    param: B
) -> Result<Self>
[src]

pub fn delete(client: &Client, plan: &str) -> Result<Deleted>[src]

pub fn list<B: Serialize>(client: &Client, param: B) -> Result<List<Self>>[src]

Trait Implementations

impl PartialEq<Plans> for Plans[src]

impl Debug for Plans[src]

impl Serialize for Plans[src]

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

Auto Trait Implementations

impl Unpin for Plans

impl Sync for Plans

impl Send for Plans

impl UnwindSafe for Plans

impl RefUnwindSafe for Plans

Blanket Implementations

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