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

lib/ex_stream_client/model/reaction_group_response.ex

defmodule ExStreamClient.Model.ReactionGroupResponse do
@moduledoc "Schema representing a ReactionGroupResponse"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [:count, :first_reaction_at, :last_reaction_at, :sum_scores]
defstruct [:count, :first_reaction_at, :last_reaction_at, :sum_scores]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{
count: integer(),
first_reaction_at: float(),
last_reaction_at: float(),
sum_scores: integer()
}
end