Current section
Files
Jump to
Current section
Files
lib/ex_openai/generated/components/update_group_body.ex
defmodule ExOpenAI.Components.UpdateGroupBody do
use ExOpenAI.Jason
@moduledoc """
Request payload for updating the details of an existing group.
## Fields
* `:name` - **required** - `String.t()`
New display name for the group.
Constraints: minLength: 1, maxLength: 255
"""
@type t() :: %{__struct__: __MODULE__, name: String.t()}
defstruct [:name]
end