Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/delete_reaction_request.ex
defmodule ExStreamClient.Model.DeleteReactionRequest do
@moduledoc "Schema representing a DeleteReactionRequest"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
defstruct [:hard_delete]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{hard_delete: boolean() | nil}
end