gewe-core 0.1.4

Core types and definitions for gewe WeChat SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Serialize;

#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteSnsRequest<'a> {
    #[serde(rename = "appId")]
    pub app_id: &'a str,
    #[serde(rename = "snsId")]
    pub sns_id: i64,
}

pub type DeleteSnsResponse = ();