/**
 * @example
 *     {
 *         logo_url: "https://example.com/logo.png",
 *         invite_link_allowed_domains: ["example.com"],
 *         ip_allowlist: ["203.0.113.0/24"]
 *     }
 */
export interface UpdateWorkspaceRequest {
    /** URL of the workspace logo. Must be an https URL ending in .png or .svg, or null to clear it. */
    logo_url?: string | null;
    /** Email domains allowed to join the workspace via invite link. */
    invite_link_allowed_domains?: string[];
    /** IP addresses or CIDR ranges allowed to access the workspace. */
    ip_allowlist?: string[];
}
