rvk_objects/
lib.rs

1#![doc(html_logo_url = "https://raw.githubusercontent.com/u32i64/rvk/master/logo.png")]
2#![doc = include_str!("../README.md")]
3
4/// Defines the version of VK API that is generally considered to be "supported" by this version of the crate.
5pub const API_VERSION: &str = "5.131";
6
7use serde_derive::Deserialize;
8
9/// The 'integer' type that is used in objects.
10pub type Integer = i64;
11
12/// The 'number' type that is used in objects.
13pub type Number = f64;
14
15/// The 'boolean' type that is used in objects.
16pub 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;