mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 09:33:22 +00:00
Update to match new API: send null properties for organization properties that are unchanged
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { OrganizationKeysRequest } from "./organization-keys.request";
|
|
|
|
export interface OrganizationUpdateRequest {
|
|
name?: string;
|
|
billingEmail?: string;
|
|
keys?: OrganizationKeysRequest;
|
|
}
|