proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.contact.verifyPhone

use serde::{Deserialize, Serialize};

/// Verifies control over a phone number with a code received via SMS and starts a contact import session. Requires authentication.
/// XRPC Procedure: app.bsky.contact.verifyPhone
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
    pub code: String,
    pub phone: String,
}

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