Interface SearchResponse

interface SearchResponse {
    comments: CommentView[];
    communities: CommunityView[];
    posts: PostView[];
    type_: SearchType;
    users: PersonView[];
}

Properties

comments: CommentView[]
communities: CommunityView[]
posts: PostView[]
type_: SearchType
users: PersonView[]