mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 12:03:33 +00:00
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
import { OrganizationKeysRequest } from './organizationKeysRequest';
|
|
|
|
export class OrganizationUpdateRequest {
|
|
name: string;
|
|
identifier: string;
|
|
businessName: string;
|
|
billingEmail: string;
|
|
keys: OrganizationKeysRequest;
|
|
}
|