Interface VideoAddParams

interface VideoAddParams {
    owner_id: number;
    target_id?: number;
    video_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

owner_id: number

ID of the user or community that owns the video. Use a negative value to designate a community ID.

target_id?: number

identifier of a user or community to add a video to. Use a negative value to designate a community ID.

video_id: number

Video ID.

Generated using TypeDoc