pub struct InvoiceSettingCustomerRenderingOptions {
pub amount_tax_display: Option<String>,
pub template: Option<String>,
}
Fields§
§amount_tax_display: Option<String>
How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
template: Option<String>
ID of the invoice rendering template to be used for this customer’s invoices. If set, the template will be used on all invoices for this customer unless a template is set directly on the invoice.
Trait Implementations§
Source§impl Clone for InvoiceSettingCustomerRenderingOptions
impl Clone for InvoiceSettingCustomerRenderingOptions
Source§fn clone(&self) -> InvoiceSettingCustomerRenderingOptions
fn clone(&self) -> InvoiceSettingCustomerRenderingOptions
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 moreSource§impl FromValueOpt for InvoiceSettingCustomerRenderingOptions
impl FromValueOpt for InvoiceSettingCustomerRenderingOptions
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for InvoiceSettingCustomerRenderingOptions
impl RefUnwindSafe for InvoiceSettingCustomerRenderingOptions
impl Send for InvoiceSettingCustomerRenderingOptions
impl Sync for InvoiceSettingCustomerRenderingOptions
impl Unpin for InvoiceSettingCustomerRenderingOptions
impl UnwindSafe for InvoiceSettingCustomerRenderingOptions
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