mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
Merge pull request #115 from bitwarden/feature/tax-info-collection
Support tax collection info
This commit is contained in:
@@ -13,4 +13,11 @@ export class OrganizationCreateRequest {
|
||||
additionalStorageGb: number;
|
||||
premiumAccessAddon: boolean;
|
||||
collectionName: string;
|
||||
taxIdNumber: string;
|
||||
billingAddressLine1: string;
|
||||
billingAddressLine2: string;
|
||||
billingAddressCity: string;
|
||||
billingAddressState: string;
|
||||
billingAddressPostalCode: string;
|
||||
billingAddressCountry: string;
|
||||
}
|
||||
|
||||
9
src/models/request/organizationTaxInfoUpdateRequest.ts
Normal file
9
src/models/request/organizationTaxInfoUpdateRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { TaxInfoUpdateRequest } from './taxInfoUpdateRequest';
|
||||
|
||||
export class OrganizationTaxInfoUpdateRequest extends TaxInfoUpdateRequest {
|
||||
taxId: string;
|
||||
line1: string;
|
||||
line2: string;
|
||||
city: string;
|
||||
state: string;
|
||||
}
|
||||
4
src/models/request/taxInfoUpdateRequest.ts
Normal file
4
src/models/request/taxInfoUpdateRequest.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export class TaxInfoUpdateRequest {
|
||||
country: string;
|
||||
postalCode: string;
|
||||
}
|
||||
Reference in New Issue
Block a user