Response returned by the API at GET /my/posts

interface PostResponse {
    allowNsfwContent?: boolean;
    blurNsfwPosts?: boolean;
    chunkedPosts: Post[][];
    currentUserProfile?: ChatProfile;
    hasNextPage?: boolean;
    hasUserAllowedNsfwPosts?: boolean;
    rangeTickStop?: number;
    settings?: Setting;
}

Properties

allowNsfwContent?: boolean
blurNsfwPosts?: boolean
chunkedPosts: Post[][]

A series of Posts created by the User

currentUserProfile?: ChatProfile

The ChatProfile for the current User

hasNextPage?: boolean

Is there another page of data?

hasUserAllowedNsfwPosts?: boolean

If the current User has allowed NSFW posts

rangeTickStop?: number

The distance selected in the app

Example

"4"
settings?: Setting

The current User's settings

Generated using TypeDoc