squareup 2.13.0

Rust SDK for the Square Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Model struct for InvoiceRecipientTaxIds type.

use serde::{Deserialize, Serialize};

/// Represents the tax IDs for an invoice recipient.
///
/// The country of the seller account determines whether the corresponding `tax_ids` field is
/// available for the customer. For more information, see [Invoice recipient tax
/// IDs](https://developer.squareup.com/docs/invoices-api/overview#recipient-tax-ids).
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
pub struct InvoiceRecipientTaxIds {
    /// **Read only** The EU VAT identification number for the invoice recipient. For example,
    /// IE3426675K.
    pub eu_vat: Option<String>,
}