jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.atproto.server.getAccountInviteCodes
//
// 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;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::com_atproto::server::InviteCode;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetAccountInviteCodes {
    /// Defaults to `true`.
    #[serde(default = "_default_create_available")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub create_available: Option<bool>,
    /// Defaults to `true`.
    #[serde(default = "_default_include_used")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub include_used: Option<bool>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetAccountInviteCodesOutput<'a> {
    #[serde(borrow)]
    pub codes: Vec<InviteCode<'a>>,
}


#[open_union]
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    IntoStatic
)]

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetAccountInviteCodesError<'a> {
    #[serde(rename = "DuplicateCreate")]
    DuplicateCreate(Option<CowStr<'a>>),
}

impl core::fmt::Display for GetAccountInviteCodesError<'_> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::DuplicateCreate(msg) => {
                write!(f, "DuplicateCreate")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for com.atproto.server.getAccountInviteCodes
pub struct GetAccountInviteCodesResponse;
impl jacquard_common::xrpc::XrpcResp for GetAccountInviteCodesResponse {
    const NSID: &'static str = "com.atproto.server.getAccountInviteCodes";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetAccountInviteCodesOutput<'de>;
    type Err<'de> = GetAccountInviteCodesError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for GetAccountInviteCodes {
    const NSID: &'static str = "com.atproto.server.getAccountInviteCodes";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetAccountInviteCodesResponse;
}

/// Endpoint type for com.atproto.server.getAccountInviteCodes
pub struct GetAccountInviteCodesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetAccountInviteCodesRequest {
    const PATH: &'static str = "/xrpc/com.atproto.server.getAccountInviteCodes";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetAccountInviteCodes;
    type Response = GetAccountInviteCodesResponse;
}

fn _default_create_available() -> Option<bool> {
    Some(true)
}

fn _default_include_used() -> Option<bool> {
    Some(true)
}

pub mod get_account_invite_codes_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 {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

/// Builder for constructing an instance of this type
pub struct GetAccountInviteCodesBuilder<S: get_account_invite_codes_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<bool>, Option<bool>),
}

impl GetAccountInviteCodes {
    /// Create a new builder for this type
    pub fn new() -> GetAccountInviteCodesBuilder<get_account_invite_codes_state::Empty> {
        GetAccountInviteCodesBuilder::new()
    }
}

impl GetAccountInviteCodesBuilder<get_account_invite_codes_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        GetAccountInviteCodesBuilder {
            _state: PhantomData,
            _fields: (None, None),
        }
    }
}

impl<S: get_account_invite_codes_state::State> GetAccountInviteCodesBuilder<S> {
    /// Set the `createAvailable` field (optional)
    pub fn create_available(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `createAvailable` field to an Option value (optional)
    pub fn maybe_create_available(mut self, value: Option<bool>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S: get_account_invite_codes_state::State> GetAccountInviteCodesBuilder<S> {
    /// Set the `includeUsed` field (optional)
    pub fn include_used(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `includeUsed` field to an Option value (optional)
    pub fn maybe_include_used(mut self, value: Option<bool>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S> GetAccountInviteCodesBuilder<S>
where
    S: get_account_invite_codes_state::State,
{
    /// Build the final struct
    pub fn build(self) -> GetAccountInviteCodes {
        GetAccountInviteCodes {
            create_available: self._fields.0,
            include_used: self._fields.1,
        }
    }
}