export declare class TenantSettingDto { /** * Name of the setting for the tenant code (required). */ name: string; code: string; /** * Tenant code associated with the setting (required). */ tenantCode: string; /** * Additional attributes for the tenant (required). */ settingValue: object; }