ArchAstro. SDK. Types. PaginatedReplies
(archastro v0.3.1)
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.SDK.Types.PaginatedReplies{ after_cursor: String.t() | ArchAstro.SDK.Unset.t(), before_cursor: String.t() | ArchAstro.SDK.Unset.t(), has_more: boolean() | ArchAstro.SDK.Unset.t(), replies: [ArchAstro.SDK.Types.Message.t()], total_count: integer() | ArchAstro.SDK.Unset.t() }
Functions
@spec from_map(ArchAstro.SDK.JSON.object()) :: t()
@spec matches?(ArchAstro.SDK.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.SDK.JSON.object()