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
13
14
15
16
17
use super::*;

/// <https://vk.com/dev/objects/topic>
#[derive(Deserialize, Clone, Debug)]
pub struct Topic {
    pub id: Integer,
    pub title: String,
    pub created: Integer,
    pub created_by: Integer,
    pub updated: Integer,
    pub updated_by: Integer,
    pub is_closed: Integer,
    pub is_fixed: Integer,
    pub comments: Integer,
    pub first_comment: Option<String>,
    pub last_comment: Option<String>,
}