// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.admin.updateAccountEmail // // 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::{CowStr, BosStr, DefaultStr, FromStaticStr}; use jacquard_common::deps::smol_str::SmolStr; use jacquard_common::types::ident::AtIdentifier; use jacquard_common::types::value::Data; use jacquard_derive::IntoStatic; use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)] #[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))] pub struct UpdateAccountEmail { ///The handle or DID of the repo. pub account: AtIdentifier, pub email: S, #[serde(flatten, default, skip_serializing_if = "Option::is_none")] pub extra_data: Option>>, } /** Response marker for the `com.atproto.admin.updateAccountEmail` procedure. Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output`, which is `()` for this endpoint.*/ pub struct UpdateAccountEmailResponse; impl jacquard_common::xrpc::XrpcResp for UpdateAccountEmailResponse { const NSID: &'static str = "com.atproto.admin.updateAccountEmail"; const ENCODING: &'static str = "application/json"; type Output = (); type Err = jacquard_common::xrpc::GenericError; } impl jacquard_common::xrpc::XrpcRequest for UpdateAccountEmail { const NSID: &'static str = "com.atproto.admin.updateAccountEmail"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = UpdateAccountEmailResponse; } /** Endpoint marker for the `com.atproto.admin.updateAccountEmail` procedure. Path: `/xrpc/com.atproto.admin.updateAccountEmail`. The request payload type is `UpdateAccountEmail`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/ pub struct UpdateAccountEmailRequest; impl jacquard_common::xrpc::XrpcEndpoint for UpdateAccountEmailRequest { const PATH: &'static str = "/xrpc/com.atproto.admin.updateAccountEmail"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request = UpdateAccountEmail; type Response = UpdateAccountEmailResponse; } pub mod update_account_email_state { pub use crate::builder_types::{Set, Unset, IsSet, IsUnset}; #[allow(unused)] use ::core::marker::PhantomData; mod sealed { pub trait Sealed {} } /// State trait tracking which required fields have been set pub trait State: sealed::Sealed { type Account; type Email; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Account = Unset; type Email = Unset; } ///State transition - sets the `account` field to Set pub struct SetAccount(PhantomData St>); impl sealed::Sealed for SetAccount {} impl State for SetAccount { type Account = Set; type Email = St::Email; } ///State transition - sets the `email` field to Set pub struct SetEmail(PhantomData St>); impl sealed::Sealed for SetEmail {} impl State for SetEmail { type Account = St::Account; type Email = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `account` field pub struct account(()); ///Marker type for the `email` field pub struct email(()); } } /// Builder for constructing an instance of this type. pub struct UpdateAccountEmailBuilder< St: update_account_email_state::State, S: BosStr = DefaultStr, > { _state: PhantomData St>, _fields: (Option>, Option), _type: PhantomData S>, } impl UpdateAccountEmail { /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed pub fn new() -> UpdateAccountEmailBuilder< update_account_email_state::Empty, DefaultStr, > { UpdateAccountEmailBuilder::new() } } impl UpdateAccountEmail { /// Create a new builder for this type pub fn builder() -> UpdateAccountEmailBuilder { UpdateAccountEmailBuilder::builder() } } impl UpdateAccountEmailBuilder { /// Create a new builder with all fields unset, using the default string type, if needed pub fn new() -> Self { UpdateAccountEmailBuilder { _state: PhantomData, _fields: (None, None), _type: PhantomData, } } } impl UpdateAccountEmailBuilder { /// Create a new builder with all fields unset pub fn builder() -> Self { UpdateAccountEmailBuilder { _state: PhantomData, _fields: (None, None), _type: PhantomData, } } } impl UpdateAccountEmailBuilder where St: update_account_email_state::State, St::Account: update_account_email_state::IsUnset, { /// Set the `account` field (required) pub fn account( mut self, value: impl Into>, ) -> UpdateAccountEmailBuilder, S> { self._fields.0 = Option::Some(value.into()); UpdateAccountEmailBuilder { _state: PhantomData, _fields: self._fields, _type: PhantomData, } } } impl UpdateAccountEmailBuilder where St: update_account_email_state::State, St::Email: update_account_email_state::IsUnset, { /// Set the `email` field (required) pub fn email( mut self, value: impl Into, ) -> UpdateAccountEmailBuilder, S> { self._fields.1 = Option::Some(value.into()); UpdateAccountEmailBuilder { _state: PhantomData, _fields: self._fields, _type: PhantomData, } } } impl UpdateAccountEmailBuilder where St: update_account_email_state::State, St::Account: update_account_email_state::IsSet, St::Email: update_account_email_state::IsSet, { /// Build the final struct. pub fn build(self) -> UpdateAccountEmail { UpdateAccountEmail { account: self._fields.0.unwrap(), email: self._fields.1.unwrap(), extra_data: Default::default(), } } /// Build the final struct with custom extra_data. pub fn build_with_data( self, extra_data: BTreeMap>, ) -> UpdateAccountEmail { UpdateAccountEmail { account: self._fields.0.unwrap(), email: self._fields.1.unwrap(), extra_data: Some(extra_data), } } }