jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.notification.unregisterPush
//
// 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::string::Did;
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 UnregisterPush<S: BosStr = DefaultStr> {
    pub app_id: S,
    pub platform: UnregisterPushPlatform<S>,
    pub service_did: Did<S>,
    pub token: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum UnregisterPushPlatform<S: BosStr = DefaultStr> {
    Ios,
    Android,
    Web,
    Other(S),
}

impl<S: BosStr> UnregisterPushPlatform<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::Ios => "ios",
            Self::Android => "android",
            Self::Web => "web",
            Self::Other(s) => s.as_ref(),
        }
    }
    /// Construct from a string-like value, matching known values.
    pub fn from_value(s: S) -> Self {
        match s.as_ref() {
            "ios" => Self::Ios,
            "android" => Self::Android,
            "web" => Self::Web,
            _ => Self::Other(s),
        }
    }
}

impl<S: BosStr> core::fmt::Display for UnregisterPushPlatform<S> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

impl<S: BosStr> AsRef<str> for UnregisterPushPlatform<S> {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl<S: BosStr> Serialize for UnregisterPushPlatform<S> {
    fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
    where
        Ser: serde::Serializer,
    {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for UnregisterPushPlatform<S> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let s = S::deserialize(deserializer)?;
        Ok(Self::from_value(s))
    }
}

impl<S: BosStr + Default> Default for UnregisterPushPlatform<S> {
    fn default() -> Self {
        Self::Other(Default::default())
    }
}

impl<S: BosStr> jacquard_common::IntoStatic for UnregisterPushPlatform<S>
where
    S: BosStr + jacquard_common::IntoStatic,
    S::Output: BosStr,
{
    type Output = UnregisterPushPlatform<S::Output>;
    fn into_static(self) -> Self::Output {
        match self {
            UnregisterPushPlatform::Ios => UnregisterPushPlatform::Ios,
            UnregisterPushPlatform::Android => UnregisterPushPlatform::Android,
            UnregisterPushPlatform::Web => UnregisterPushPlatform::Web,
            UnregisterPushPlatform::Other(v) => {
                UnregisterPushPlatform::Other(v.into_static())
            }
        }
    }
}

/// Response type for app.bsky.notification.unregisterPush
pub struct UnregisterPushResponse;
impl jacquard_common::xrpc::XrpcResp for UnregisterPushResponse {
    const NSID: &'static str = "app.bsky.notification.unregisterPush";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for UnregisterPush<S> {
    const NSID: &'static str = "app.bsky.notification.unregisterPush";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = UnregisterPushResponse;
}

/// Endpoint type for app.bsky.notification.unregisterPush
pub struct UnregisterPushRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UnregisterPushRequest {
    const PATH: &'static str = "/xrpc/app.bsky.notification.unregisterPush";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = UnregisterPush<S>;
    type Response = UnregisterPushResponse;
}

pub mod unregister_push_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 Token;
        type Platform;
        type AppId;
        type ServiceDid;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Token = Unset;
        type Platform = Unset;
        type AppId = Unset;
        type ServiceDid = Unset;
    }
    ///State transition - sets the `token` field to Set
    pub struct SetToken<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetToken<St> {}
    impl<St: State> State for SetToken<St> {
        type Token = Set<members::token>;
        type Platform = St::Platform;
        type AppId = St::AppId;
        type ServiceDid = St::ServiceDid;
    }
    ///State transition - sets the `platform` field to Set
    pub struct SetPlatform<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetPlatform<St> {}
    impl<St: State> State for SetPlatform<St> {
        type Token = St::Token;
        type Platform = Set<members::platform>;
        type AppId = St::AppId;
        type ServiceDid = St::ServiceDid;
    }
    ///State transition - sets the `app_id` field to Set
    pub struct SetAppId<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetAppId<St> {}
    impl<St: State> State for SetAppId<St> {
        type Token = St::Token;
        type Platform = St::Platform;
        type AppId = Set<members::app_id>;
        type ServiceDid = St::ServiceDid;
    }
    ///State transition - sets the `service_did` field to Set
    pub struct SetServiceDid<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetServiceDid<St> {}
    impl<St: State> State for SetServiceDid<St> {
        type Token = St::Token;
        type Platform = St::Platform;
        type AppId = St::AppId;
        type ServiceDid = Set<members::service_did>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `token` field
        pub struct token(());
        ///Marker type for the `platform` field
        pub struct platform(());
        ///Marker type for the `app_id` field
        pub struct app_id(());
        ///Marker type for the `service_did` field
        pub struct service_did(());
    }
}

/// Builder for constructing an instance of this type.
pub struct UnregisterPushBuilder<S: BosStr, St: unregister_push_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<S>, Option<UnregisterPushPlatform<S>>, Option<Did<S>>, Option<S>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> UnregisterPush<S> {
    /// Create a new builder for this type.
    pub fn new() -> UnregisterPushBuilder<S, unregister_push_state::Empty> {
        UnregisterPushBuilder::new()
    }
}

impl<S: BosStr> UnregisterPushBuilder<S, unregister_push_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        UnregisterPushBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> UnregisterPushBuilder<S, St>
where
    St: unregister_push_state::State,
    St::AppId: unregister_push_state::IsUnset,
{
    /// Set the `appId` field (required)
    pub fn app_id(
        mut self,
        value: impl Into<S>,
    ) -> UnregisterPushBuilder<S, unregister_push_state::SetAppId<St>> {
        self._fields.0 = Option::Some(value.into());
        UnregisterPushBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> UnregisterPushBuilder<S, St>
where
    St: unregister_push_state::State,
    St::Platform: unregister_push_state::IsUnset,
{
    /// Set the `platform` field (required)
    pub fn platform(
        mut self,
        value: impl Into<UnregisterPushPlatform<S>>,
    ) -> UnregisterPushBuilder<S, unregister_push_state::SetPlatform<St>> {
        self._fields.1 = Option::Some(value.into());
        UnregisterPushBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> UnregisterPushBuilder<S, St>
where
    St: unregister_push_state::State,
    St::ServiceDid: unregister_push_state::IsUnset,
{
    /// Set the `serviceDid` field (required)
    pub fn service_did(
        mut self,
        value: impl Into<Did<S>>,
    ) -> UnregisterPushBuilder<S, unregister_push_state::SetServiceDid<St>> {
        self._fields.2 = Option::Some(value.into());
        UnregisterPushBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> UnregisterPushBuilder<S, St>
where
    St: unregister_push_state::State,
    St::Token: unregister_push_state::IsUnset,
{
    /// Set the `token` field (required)
    pub fn token(
        mut self,
        value: impl Into<S>,
    ) -> UnregisterPushBuilder<S, unregister_push_state::SetToken<St>> {
        self._fields.3 = Option::Some(value.into());
        UnregisterPushBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> UnregisterPushBuilder<S, St>
where
    St: unregister_push_state::State,
    St::Token: unregister_push_state::IsSet,
    St::Platform: unregister_push_state::IsSet,
    St::AppId: unregister_push_state::IsSet,
    St::ServiceDid: unregister_push_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> UnregisterPush<S> {
        UnregisterPush {
            app_id: self._fields.0.unwrap(),
            platform: self._fields.1.unwrap(),
            service_did: self._fields.2.unwrap(),
            token: self._fields.3.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<SmolStr, Data<S>>,
    ) -> UnregisterPush<S> {
        UnregisterPush {
            app_id: self._fields.0.unwrap(),
            platform: self._fields.1.unwrap(),
            service_did: self._fields.2.unwrap(),
            token: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}