use js_int::UInt;
use ruma_api::ruma_api;
ruma_api! {
metadata: {
description: "Ask for a verification token for a given 3rd party ID.",
method: POST,
name: "request_contact_verification_token",
path: "/_matrix/client/r0/account/3pid/email/requestToken",
rate_limited: false,
authentication: None,
}
request: {
pub client_secret: &'a str,
pub email: &'a str,
pub send_attempt: UInt,
#[serde(skip_serializing_if = "Option::is_none")]
pub next_link: Option<&'a str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id_server: Option<&'a str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id_access_token: Option<&'a str>,
}
#[derive(Default)]
response: {}
error: crate::Error
}
impl<'a> Request<'a> {
pub fn new(client_secret: &'a str, email: &'a str, send_attempt: UInt) -> Self {
Self {
client_secret,
email,
send_attempt,
next_link: None,
id_server: None,
id_access_token: None,
}
}
}
impl Response {
pub fn new() -> Self {
Self
}
}