square_rust/api/models/objects/
customer_tax_ids.rs

1//! CustomerTaxIds
2
3use serde::{Deserialize, Serialize};
4
5/// The customer's tax IDs.
6#[derive(Debug, Serialize, Deserialize, Clone)]
7pub struct CustomerTaxIds {
8    /// The EU VAT identification number for the customer. For example, IE3426675K. The ID can contain alphanumeric characters only.
9    /// Max Length: 20
10    pub eu_vat: Option<String>,
11}