ArchAstro. SDK. Types. ActivityFeedEntryListResponse
(archastro v0.3.5)
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.SDK.Types.ActivityFeedEntryListResponse{ after_cursor: String.t() | ArchAstro.SDK.Unset.t(), before_cursor: String.t() | ArchAstro.SDK.Unset.t(), entries: [ArchAstro.SDK.Types.ActivityFeedEntry.t()], has_more: boolean() }
Functions
@spec from_map(ArchAstro.SDK.JSON.object()) :: t()
@spec matches?(ArchAstro.SDK.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.SDK.JSON.object()