lib/spatio/model/update_conversation_request.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Spatio.Model.UpdateConversationRequest do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:title,
:context,
:cwd,
:session_id,
:pinned
]
@type t :: %__MODULE__{
:title => String.t | nil,
:context => String.t | nil,
:cwd => String.t | nil,
:session_id => String.t | nil,
:pinned => boolean() | nil
}
def decode(value) do
value
end
end