safe-vk 1.2.0

A simple library to create your own vk bot for conversations
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct ButtonPressCallback<T> {
    pub conversation_message_id: i32,
    pub event_id: String,
    pub payload: T,
    pub peer_id: i32,
    pub user_id: i32,
}