Struct stripe::SubscriptionsResourcePendingUpdate[][src]

pub struct SubscriptionsResourcePendingUpdate {
    pub billing_cycle_anchor: Option<Timestamp>,
    pub expires_at: Timestamp,
    pub subscription_items: Option<Vec<SubscriptionItem>>,
    pub trial_end: Option<Timestamp>,
    pub trial_from_plan: Option<bool>,
}

Fields

billing_cycle_anchor: Option<Timestamp>

If the update is applied, determines the date of the first full invoice, and, for plans with month or year intervals, the day of the month for subsequent invoices.

expires_at: Timestamp

The point after which the changes reflected by this update will be discarded and no longer applied.

subscription_items: Option<Vec<SubscriptionItem>>

List of subscription items, each with an attached plan, that will be set if the update is applied.

trial_end: Option<Timestamp>

Unix timestamp representing the end of the trial period the customer will get before being charged for the first time, if the update is applied.

trial_from_plan: Option<bool>

Indicates if a plan's trial_period_days should be applied to the subscription.

Setting trial_end per subscription is preferred, and this defaults to false. Setting this flag to true together with trial_end is not allowed.

Trait Implementations

impl Clone for SubscriptionsResourcePendingUpdate[src]

impl Debug for SubscriptionsResourcePendingUpdate[src]

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

impl Serialize for SubscriptionsResourcePendingUpdate[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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]