Interface WallSearchParams

interface WallSearchParams {
    count?: number;
    domain?: string;
    extended?: number | boolean;
    fields?: BaseUserGroupFields[];
    offset?: number;
    owner_id?: number;
    owners_only?: number | boolean;
    query?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

count of posts to return.

domain?: string

user or community screen name.

extended?: number | boolean

show extended post info.

offset?: number

Offset needed to return a specific subset of posts.

owner_id?: number

user or community id. "Remember that for a community 'owner_id' must be negative."

owners_only?: number | boolean

'1' - returns only page owner's posts.

query?: string

search query string.

Generated using TypeDoc