Skip to content

Commit

Permalink
video.getAlbumsByVideo method
Browse files Browse the repository at this point in the history
  • Loading branch information
kstep committed Feb 6, 2016
1 parent 409ea24 commit 02e9c27
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/video.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,16 @@ request_ref! {
}
}

request! {
#[derive(Eq, Copy)]
struct GetAlbumsByVideo for ["video.getAlbumsByVideo"](v => 5.44) -> Collection<Album> [Video] {
target_id: Option<OwnerId> = () => {Option},
owner_id: OwnerId = () => {},
video_id: Id = () => {},
extended: bool = (true) => {bool},
}
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub enum Privacy {
All = 0,
Expand Down

0 comments on commit 02e9c27

Please sign in to comment.