pub struct UpdateSubscriptionInvoiceSettings {
pub account_tax_ids: Option<Vec<String>>,
pub issuer: Option<UpdateSubscriptionInvoiceSettingsIssuer>,
}
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<UpdateSubscriptionInvoiceSettingsIssuer>
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 UpdateSubscriptionInvoiceSettings
impl Clone for UpdateSubscriptionInvoiceSettings
Source§fn clone(&self) -> UpdateSubscriptionInvoiceSettings
fn clone(&self) -> UpdateSubscriptionInvoiceSettings
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 UpdateSubscriptionInvoiceSettings
impl RefUnwindSafe for UpdateSubscriptionInvoiceSettings
impl Send for UpdateSubscriptionInvoiceSettings
impl Sync for UpdateSubscriptionInvoiceSettings
impl Unpin for UpdateSubscriptionInvoiceSettings
impl UnwindSafe for UpdateSubscriptionInvoiceSettings
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