/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { WorkspaceCompliance } from './workspaceCompliance'; /** * UpdateWorkspaceComplianceRequest represents a request to update compliance settings for a workspace. This operation modifies the existing compliance configuration with new settings. Required Fields: - compliance: The new compliance settings to apply to the workspace The compliance settings include: - Data retention policies - Access control requirements - Audit logging configurations - Security controls - Regulatory compliance flags Example: ```protobuf message request { compliance: { data_retention_days: 90 require_2fa: true audit_logging_enabled: true } } ``` */ export declare class UpdateWorkspaceComplianceRequest { 'compliance': WorkspaceCompliance; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }