pub struct SubscriptionScheduleDefaultSettings {
pub application_fee_percent: Option<f64>,
pub automatic_tax: Option<SubscriptionSchedulesResourceDefaultSettingsAutomaticTax>,
pub billing_cycle_anchor: SubscriptionScheduleDefaultSettingsBillingCycleAnchor,
pub billing_thresholds: Option<SubscriptionBillingThresholds>,
pub collection_method: Option<SubscriptionScheduleDefaultSettingsCollectionMethod>,
pub default_payment_method: Option<Expandable<PaymentMethod>>,
pub invoice_settings: Option<SubscriptionScheduleInvoiceSettings>,
pub transfer_data: Option<SubscriptionTransferData>,
}
Fields
application_fee_percent: Option<f64>
A non-negative decimal between 0 and 100, with at most two decimal places.
This represents the percentage of the subscription invoice subtotal that will be transferred to the application owner’s Stripe account during this phase of the schedule.
automatic_tax: Option<SubscriptionSchedulesResourceDefaultSettingsAutomaticTax>
billing_cycle_anchor: SubscriptionScheduleDefaultSettingsBillingCycleAnchor
Possible values are phase_start
or automatic
.
If phase_start
then billing cycle anchor of the subscription is set to the start of the phase when entering the phase.
If automatic
then the billing cycle anchor is automatically modified as needed when entering the phase.
For more information, see the billing cycle documentation.
billing_thresholds: Option<SubscriptionBillingThresholds>
Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period.
collection_method: Option<SubscriptionScheduleDefaultSettingsCollectionMethod>
Either charge_automatically
, or send_invoice
.
When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions.
default_payment_method: Option<Expandable<PaymentMethod>>
ID of the default payment method for the subscription schedule.
If not set, invoices will use the default payment method in the customer’s invoice settings.
invoice_settings: Option<SubscriptionScheduleInvoiceSettings>
The subscription schedule’s default invoice settings.
transfer_data: Option<SubscriptionTransferData>
The account (if any) the associated subscription’s payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription’s invoices.
Trait Implementations
sourceimpl Clone for SubscriptionScheduleDefaultSettings
impl Clone for SubscriptionScheduleDefaultSettings
sourcefn clone(&self) -> SubscriptionScheduleDefaultSettings
fn clone(&self) -> SubscriptionScheduleDefaultSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for SubscriptionScheduleDefaultSettings
impl Default for SubscriptionScheduleDefaultSettings
sourcefn default() -> SubscriptionScheduleDefaultSettings
fn default() -> SubscriptionScheduleDefaultSettings
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SubscriptionScheduleDefaultSettings
impl<'de> Deserialize<'de> for SubscriptionScheduleDefaultSettings
sourcefn 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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for SubscriptionScheduleDefaultSettings
impl Send for SubscriptionScheduleDefaultSettings
impl Sync for SubscriptionScheduleDefaultSettings
impl Unpin for SubscriptionScheduleDefaultSettings
impl UnwindSafe for SubscriptionScheduleDefaultSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more