ArchAstro. Types. ActivityFeedEntryListResponse
(archastro v0.2.0)
Copy Markdown
A paginated list of activity feed entries returned by a feed query, with cursors for navigating backward and forward through results.
Summary
Types
@type t() :: %ArchAstro.Types.ActivityFeedEntryListResponse{ after_cursor: String.t() | ArchAstro.Unset.t(), before_cursor: String.t() | ArchAstro.Unset.t(), entries: [ArchAstro.Types.ActivityFeedEntry.t()], has_more: boolean() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()