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.
The timestamp is in UTC format.
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.
See Using trial periods on subscriptions to learn more.
Trait Implementations§
source§impl Clone for SubscriptionsResourcePendingUpdate
impl Clone for SubscriptionsResourcePendingUpdate
source§fn clone(&self) -> SubscriptionsResourcePendingUpdate
fn clone(&self) -> SubscriptionsResourcePendingUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SubscriptionsResourcePendingUpdate
impl Default for SubscriptionsResourcePendingUpdate
source§fn default() -> SubscriptionsResourcePendingUpdate
fn default() -> SubscriptionsResourcePendingUpdate
source§impl<'de> Deserialize<'de> for SubscriptionsResourcePendingUpdate
impl<'de> Deserialize<'de> for SubscriptionsResourcePendingUpdate
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for SubscriptionsResourcePendingUpdate
impl RefUnwindSafe for SubscriptionsResourcePendingUpdate
impl Send for SubscriptionsResourcePendingUpdate
impl Sync for SubscriptionsResourcePendingUpdate
impl Unpin for SubscriptionsResourcePendingUpdate
impl UnwindSafe for SubscriptionsResourcePendingUpdate
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)