ArchAstro. Types. PaginatedReplies
(archastro v0.2.0)
Copy Markdown
A paginated list of reply messages for a thread. The reply array is returned directly, not nested inside a data wrapper.
Summary
Types
@type t() :: %ArchAstro.Types.PaginatedReplies{ after_cursor: String.t() | ArchAstro.Unset.t(), before_cursor: String.t() | ArchAstro.Unset.t(), has_more: boolean() | ArchAstro.Unset.t(), replies: [ArchAstro.Types.Message.t()], total_count: integer() | ArchAstro.Unset.t() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()