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
use super::*;

/// <https://vk.com/dev/objects/gift>
#[derive(Deserialize, Clone, Debug)]
pub struct Gift {
    pub id: Integer,
    pub thumb_256: String,
    pub thumb_96: String,
    pub thumb_48: String,
}