InvoiceRecipient constructor

InvoiceRecipient({
  1. String? customerId,
  2. String? emailAddress,
  3. Address? address,
  4. String? phoneNumber,
  5. String? companyName,
  6. String? givenName,
  7. String? familyName,
  8. InvoiceRecipientTaxIds? taxIds,
})

Implementation

InvoiceRecipient(
    {this.customerId,
    this.emailAddress,
    this.address,
    this.phoneNumber,
    this.companyName,
    this.givenName,
    this.familyName,
    this.taxIds});