1 2 3 4 5 6 7 8 9 10 11 12 13
// ======================================
// This file was automatically generated.
// ======================================
use serde::{Deserialize, Serialize};
/// The resource representing a Stripe "InvoiceSettingRenderingOptions".
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct InvoiceSettingRenderingOptions {
/// How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
#[serde(skip_serializing_if = "Option::is_none")]
pub amount_tax_display: Option<String>,
}