Interface WallGetRepostsParams

interface WallGetRepostsParams {
    count?: number;
    offset?: number;
    owner_id?: number;
    post_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

Number of reposts to return.

offset?: number

Offset needed to return a specific subset of reposts.

owner_id?: number

User ID or community ID. By default, current user ID. Use a negative value to designate a community ID.

post_id?: number

Post ID.

Generated using TypeDoc