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 channel_export.ex
Raw

lib/ex_stream_client/model/channel_export.ex

defmodule ExStreamClient.Model.ChannelExport do
@moduledoc "Schema representing a ChannelExport"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
defstruct [:cid, :id, :messages_since, :messages_until, :type]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{
cid: String.t() | nil,
id: String.t() | nil,
messages_since: float() | nil,
messages_until: float() | nil,
type: String.t() | nil
}
end