proto_blue_api/generated/com/atproto/temp/requestPhoneVerification.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.temp.requestPhoneVerification
3
4use serde::{Deserialize, Serialize};
5
6/// Request a verification code to be sent to the supplied phone number
7/// XRPC Procedure: com.atproto.temp.requestPhoneVerification
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11 pub phone_number: String,
12}