pub struct InvoicesResourceInvoiceRendering {
pub amount_tax_display: Option<String>,
pub pdf: Option<InvoiceRenderingPdf>,
pub template: Option<String>,
pub template_version: Option<i64>,
}
Fields§
§amount_tax_display: Option<String>
How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
pdf: Option<InvoiceRenderingPdf>
Invoice pdf rendering options
template: Option<String>
ID of the rendering template that the invoice is formatted by.
template_version: Option<i64>
Version of the rendering template that the invoice is using.
Trait Implementations§
Source§impl Clone for InvoicesResourceInvoiceRendering
impl Clone for InvoicesResourceInvoiceRendering
Source§fn clone(&self) -> InvoicesResourceInvoiceRendering
fn clone(&self) -> InvoicesResourceInvoiceRendering
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 InvoicesResourceInvoiceRendering
impl RefUnwindSafe for InvoicesResourceInvoiceRendering
impl Send for InvoicesResourceInvoiceRendering
impl Sync for InvoicesResourceInvoiceRendering
impl Unpin for InvoicesResourceInvoiceRendering
impl UnwindSafe for InvoicesResourceInvoiceRendering
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