# The UserPreference object

User Preference represents a user-specific setting scoped to an individual user within an account.
 Unlike workspace or account settings that apply to all users, user preferences allow personal
 customization (e.g., UI theme, editor preferences) without affecting other users.

## Attributes

- `name` (string, Beta)
  Name of the setting.
- `user_id` (string, Beta)
  User ID of the user.
- `boolean_val` (object, Beta)
  - `value` (boolean, Public Preview)
- `string_val` (object, Beta)
  - `value` (string, Public Preview)
    Represents a generic string value.
- `effective_boolean_val` (object, Beta)
  - `value` (boolean, Public Preview)
- `effective_string_val` (object, Beta)
  - `value` (string, Public Preview)
    Represents a generic string value.

## Example

```json
{
  "name": "string",
  "user_id": "string",
  "boolean_val": {
    "value": true
  },
  "string_val": {
    "value": "string"
  },
  "effective_boolean_val": {
    "value": true
  },
  "effective_string_val": {
    "value": "string"
  }
}
```


