proto-blue-api 0.1.0

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.contact.startPhoneVerification

use serde::{Deserialize, Serialize};

/// Starts a phone verification flow. The phone passed will receive a code via SMS that should be passed to `app.bsky.contact.verifyPhone`. Requires authentication.
/// XRPC Procedure: app.bsky.contact.startPhoneVerification
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
    pub phone: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {}