pub struct CreateSubscriptionInvoiceSettings {
pub account_tax_ids: Option<Vec<String>>,
pub issuer: Option<CreateSubscriptionInvoiceSettingsIssuer>,
}
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. Will be set on invoices generated by the subscription.
issuer: Option<CreateSubscriptionInvoiceSettingsIssuer>
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 CreateSubscriptionInvoiceSettings
impl Clone for CreateSubscriptionInvoiceSettings
Source§fn clone(&self) -> CreateSubscriptionInvoiceSettings
fn clone(&self) -> CreateSubscriptionInvoiceSettings
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 CreateSubscriptionInvoiceSettings
impl RefUnwindSafe for CreateSubscriptionInvoiceSettings
impl Send for CreateSubscriptionInvoiceSettings
impl Sync for CreateSubscriptionInvoiceSettings
impl Unpin for CreateSubscriptionInvoiceSettings
impl UnwindSafe for CreateSubscriptionInvoiceSettings
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