TaxId constructor
const
TaxId({
- String? country,
- required DateTime created,
- CustomerOrId? customer,
- required String id,
- required bool livemode,
- TaxIDsOwner? owner,
- required InvoicesResourceInvoiceTaxIdType type,
- required String value,
- TaxIdVerification? verification,
tax_id
You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account. Customer and account tax IDs get displayed on related invoices and credit notes. Related guides: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids), [Account tax IDs](https://stripe.com/docs/invoicing/connect#account-tax-ids)
Implementation
const TaxId({
this.country,
required this.created,
this.customer,
required this.id,
required this.livemode,
this.owner,
required this.type,
required this.value,
this.verification,
});