1#![doc(html_logo_url = "https://raw.githubusercontent.com/u32i64/rvk/master/logo.png")]
2#![doc = include_str!("../README.md")]
3
4pub const API_VERSION: &str = "5.131";
6
7use serde_derive::Deserialize;
8
9pub type Integer = i64;
11
12pub type Number = f64;
14
15pub type Boolean = bool;
17
18pub mod app;
19pub mod app_widget;
20pub mod attachment;
21pub mod audio;
22pub mod button;
23pub mod clickable_stickers;
24pub mod comment;
25pub mod comment_board;
26pub mod conversation;
27pub mod document;
28pub mod geo;
29pub mod gift;
30pub mod group;
31pub mod link;
32pub mod market_album;
33pub mod market_item;
34pub mod message;
35pub mod note;
36pub mod page;
37pub mod photo;
38pub mod podcast;
39pub mod poll;
40pub mod post;
41pub mod post_source;
42pub mod privacy;
43pub mod push_settings;
44pub mod stats;
45pub mod sticker;
46pub mod story;
47pub mod topic;
48pub mod user;
49pub mod video;