pub struct CreateSubscriptionScheduleDefaultSettingsInvoiceSettings {
pub account_tax_ids: Option<Vec<String>>,
pub days_until_due: Option<u32>,
pub issuer: Option<CreateSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuer>,
}
Expand description
All invoices will be billed using the specified settings.
Fields§
§account_tax_ids: Option<Vec<String>>
The account tax IDs associated with the subscription schedule. Will be set on invoices generated by the subscription schedule.
days_until_due: Option<u32>
Number of days within which a customer must pay invoices generated by this subscription schedule.
This value will be null
for subscription schedules where collection_method=charge_automatically
.
issuer: Option<CreateSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuer>
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl Clone for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
Source§fn clone(&self) -> CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
fn clone(&self) -> CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl RefUnwindSafe for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl Send for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl Sync for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl Unpin for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
impl UnwindSafe for CreateSubscriptionScheduleDefaultSettingsInvoiceSettings
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
Mutably borrows from an owned value. Read more