Interface NewsfeedUnsubscribeParams

interface NewsfeedUnsubscribeParams {
    item_id: number;
    owner_id?: number;
    type: "video" | "photo" | "post" | "note" | "topic";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

item_id: number

Object ID.

owner_id?: number

Object owner ID.

type: "video" | "photo" | "post" | "note" | "topic"

Type of object from which to unsubscribe: 'note' - note, 'photo' - photo, 'post' - post on user wall or community wall, 'topic' - topic, 'video' - video

Generated using TypeDoc