Response returned by the API at GET /videos

interface VideosResponse {
    allowNsfwContent?: boolean;
    blurNsfwPosts?: boolean;
    currentUserProfile?: ChatProfile;
    hasNextPage?: boolean;
    hasUserAllowedNsfwPosts?: boolean;
    isLikedByMe: boolean;
    page: number;
    post: Post;
    settings?: Setting;
    videos: Post[];
}

Properties

allowNsfwContent?: boolean
blurNsfwPosts?: boolean
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

isLikedByMe: boolean

Has the current User liked this post?

page: number

What page of results this is about

post: Post

The video Post

settings?: Setting

The current User's settings

videos: Post[]

The returned videos

NOTE: Videos are a Post

NOTE: This array has only been observed with one element

Generated using TypeDoc