1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

Support tax collection info

This commit is contained in:
Chad Scharf
2020-06-12 19:29:52 -04:00
parent 2de8c5ed16
commit dea0233ee3
6 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { TaxInfoUpdateRequest } from './taxInfoUpdateRequest';
export class OrganizationTaxInfoUpdateRequest extends TaxInfoUpdateRequest {
taxId: string;
line1: string;
line2: string;
city: string;
state: string;
}