Packages

A client for [Stream](https://getstream.io) REST APIs in Elixir - auto generated from their [OpenAPI specification](https://github.com/GetStream/protocol).

Current section

Files

Jump to
ex_stream_client lib ex_stream_client model message_change_set.ex
Raw

lib/ex_stream_client/model/message_change_set.ex

defmodule ExStreamClient.Model.MessageChangeSet do
@moduledoc "Schema representing a MessageChangeSet"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [
:attachments,
:custom,
:html,
:mentioned_user_ids,
:mml,
:pin,
:quoted_message_id,
:silent,
:text
]
defstruct [
:attachments,
:custom,
:html,
:mentioned_user_ids,
:mml,
:pin,
:quoted_message_id,
:silent,
:text
]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{
attachments: boolean(),
custom: boolean(),
html: boolean(),
mentioned_user_ids: boolean(),
mml: boolean(),
pin: boolean(),
quoted_message_id: boolean(),
silent: boolean(),
text: boolean()
}
end