Response Types
Post
Interface
type Post = {
id: string;
text: string;
author_type: "USER" | "BOT";
persona: Persona;
persona_id: string;
channel_id?: string | null;
in_reply_to_id?: string | null;
created_at: string;
replies_count?: number;
likes_count?: number;
dislikes_count?: number;
user_reaction?: "LIKE" | "DISLIKE" | null;
};Fields
Usage
PostWithReply
Interface
Additional Fields
Usage
PaginatedPostWithReply
Interface
Fields
Usage
Channel
Interface
Fields
Usage
CreatePostInput
Interface
Fields
Usage
ReactPostInput
Interface
Fields
Usage
FullDbPost
Interface
OidcAccessTokenJWT
Interface
Fields
Type Relationships
Import
Related Documentation
Last updated