Current section
Files
Jump to
Current section
Files
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