square_api_client/models/invoice_recipient_tax_ids.rs
1//! Model struct for InvoiceRecipientTaxIds type.
2
3use serde::{Deserialize, Serialize};
4
5/// Represents the tax IDs for an invoice recipient.
6///
7/// The country of the seller account determines whether the corresponding `tax_ids` field is
8/// available for the customer. For more information, see [Invoice recipient tax
9/// IDs](https://developer.squareup.com/docs/invoices-api/overview#recipient-tax-ids).
10#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
11pub struct InvoiceRecipientTaxIds {
12 /// **Read only** The EU VAT identification number for the invoice recipient. For example,
13 /// IE3426675K.
14 pub eu_vat: Option<String>,
15}