jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.atproto.server.activateAccount
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
/// XRPC request marker type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct ActivateAccount;
/// Response type for com.atproto.server.activateAccount
pub struct ActivateAccountResponse;
impl jacquard_common::xrpc::XrpcResp for ActivateAccountResponse {
    const NSID: &'static str = "com.atproto.server.activateAccount";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

impl jacquard_common::xrpc::XrpcRequest for ActivateAccount {
    const NSID: &'static str = "com.atproto.server.activateAccount";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Response = ActivateAccountResponse;
}

/// Endpoint type for com.atproto.server.activateAccount
pub struct ActivateAccountRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ActivateAccountRequest {
    const PATH: &'static str = "/xrpc/com.atproto.server.activateAccount";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Request<S: BosStr> = ActivateAccount;
    type Response = ActivateAccountResponse;
}