Response returned by the API at GET /my/posts

interface PostRepliesResponse {
    allowChat: boolean;
    author: User;
    authorChatProfile: ChatProfile;
    backUrl: string;
    group: Group;
    hasUserAllowedNsfwPosts?: boolean;
    isLikedByMe: boolean;
    post: Post;
    postReplies: Post[];
    timeAgo: string;
    user: User;
    visibleGroupLink: boolean;
    visiblePreviousPostLink: boolean;
}

Properties

allowChat: boolean
author: User

The Post's author's User

authorChatProfile: ChatProfile

The ChatProfile of the author

backUrl: string
group: Group
hasUserAllowedNsfwPosts?: boolean

If the current User has allowed NSFW posts

isLikedByMe: boolean

Has the current User liked this Post?

post: Post

The Post

postReplies: Post[]

The Posts that are replies to the Post

timeAgo: string

This is a string that can be used to represent the amount of time ago this is from

Example

'2d'

Example

'20h'
user: User

The current User

visibleGroupLink: boolean
visiblePreviousPostLink: boolean

Generated using TypeDoc