---
title: "UpdateSolutionBody"
description: "Request body for updating a Solution."
section: "Reference"
group: "Types"
order: 196
---

## Definition

```ts
interface UpdateSolutionBody {
  name?: string | undefined;
  description?: string | null | undefined;
}
```

## Fields

| Field         | Type                          | Notes                                                                     |
| ------------- | ----------------------------- | ------------------------------------------------------------------------- |
| `name`        | `string \| undefined`         | `optional` — New solution name.                                           |
| `description` | `string \| null \| undefined` | `optional` — Updated description; `null` clears the existing description. |
