mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
* [EC-489] chore: remove obsolete `identifier` field * [EC-489] chore: remove identifier from org response
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { OrganizationKeysRequest } from "./organization-keys.request";
|
|
|
|
export class OrganizationUpdateRequest {
|
|
name: string;
|
|
businessName: string;
|
|
billingEmail: string;
|
|
keys: OrganizationKeysRequest;
|
|
}
|