diff --git a/libs/common/src/billing/models/request/preview-organization-invoice.request.ts b/libs/common/src/billing/models/request/preview-organization-invoice.request.ts index bfeecb4eb23..a66dc5c46a5 100644 --- a/libs/common/src/billing/models/request/preview-organization-invoice.request.ts +++ b/libs/common/src/billing/models/request/preview-organization-invoice.request.ts @@ -45,9 +45,9 @@ class SecretsManager { class TaxInformation { postalCode: string; country: string; - taxId: string; + taxId: string | null; - constructor(postalCode: string, country: string, taxId: string) { + constructor(postalCode: string, country: string, taxId: string | null) { this.postalCode = postalCode; this.country = country; this.taxId = taxId;