lib/spatio/model/update_comment_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.UpdateCommentRequest do
@moduledoc """
Either `body` (preferred) or `content` is required.
"""
@derive JSON.Encoder
defstruct [
:body,
:content
]
@type t :: %__MODULE__{
:body => String.t | nil,
:content => String.t | nil
}
def decode(value) do
value
end
end