rvk_objects 0.2.0

Crate providing objects for use with VK (VKontakte) API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::*;

/// <https://vk.com/dev/objects/market_album>
#[derive(Deserialize, Clone, Debug)]
pub struct MarketAlbum {
    pub id: Integer,
    pub owner_id: Integer,
    pub title: String,
    pub photo: photo::Photo,
    pub count: Integer,
    pub updated_time: Integer,
}