export declare class UserSettingDto { /** * Name of the setting for the tenant code (required). */ name: string; /** * code of the setting for the tenant code (required). */ code: string; /** * Tenant code associated with the setting (required). */ tenantCode: string; /** * Group name for the setting (optional). * @example '1#2' */ userId?: string; /** * Additional attributes for the tenant (required). */ settingValue: object; }