Interface VideoReorderVideosParams

interface VideoReorderVideosParams {
    after_owner_id?: number;
    after_video_id?: number;
    album_id?: number;
    before_owner_id?: number;
    before_video_id?: number;
    owner_id: number;
    target_id?: number;
    video_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

after_owner_id?: number

ID of the user or community that owns the video after which the photo in question shall be placed.

after_video_id?: number

ID of the video after which the photo in question shall be placed.

album_id?: number

ID of the video album.

before_owner_id?: number

ID of the user or community that owns the video before which the video in question shall be placed.

before_video_id?: number

ID of the video before which the video in question shall be placed.

owner_id: number

ID of the user or community that owns the video.

target_id?: number

ID of the user or community that owns the album with videos.

video_id: number

ID of the video.

Generated using TypeDoc