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.contact.sendNotification
//
// 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::{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 SendNotification<S: BosStr = DefaultStr> {
    ///The DID of who this notification comes from.
    pub from: Did<S>,
    ///The DID of who this notification should go to.
    pub to: Did<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SendNotificationOutput<S: BosStr = DefaultStr> {
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for app.bsky.contact.sendNotification
pub struct SendNotificationResponse;
impl jacquard_common::xrpc::XrpcResp for SendNotificationResponse {
    const NSID: &'static str = "app.bsky.contact.sendNotification";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = SendNotificationOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

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

/// Endpoint type for app.bsky.contact.sendNotification
pub struct SendNotificationRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SendNotificationRequest {
    const PATH: &'static str = "/xrpc/app.bsky.contact.sendNotification";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = SendNotification<S>;
    type Response = SendNotificationResponse;
}

pub mod send_notification_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 To;
        type From;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type To = Unset;
        type From = Unset;
    }
    ///State transition - sets the `to` field to Set
    pub struct SetTo<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetTo<St> {}
    impl<St: State> State for SetTo<St> {
        type To = Set<members::to>;
        type From = St::From;
    }
    ///State transition - sets the `from` field to Set
    pub struct SetFrom<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetFrom<St> {}
    impl<St: State> State for SetFrom<St> {
        type To = St::To;
        type From = Set<members::from>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `to` field
        pub struct to(());
        ///Marker type for the `from` field
        pub struct from(());
    }
}

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

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

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

impl<S: BosStr, St> SendNotificationBuilder<S, St>
where
    St: send_notification_state::State,
    St::From: send_notification_state::IsUnset,
{
    /// Set the `from` field (required)
    pub fn from(
        mut self,
        value: impl Into<Did<S>>,
    ) -> SendNotificationBuilder<S, send_notification_state::SetFrom<St>> {
        self._fields.0 = Option::Some(value.into());
        SendNotificationBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> SendNotificationBuilder<S, St>
where
    St: send_notification_state::State,
    St::To: send_notification_state::IsUnset,
{
    /// Set the `to` field (required)
    pub fn to(
        mut self,
        value: impl Into<Did<S>>,
    ) -> SendNotificationBuilder<S, send_notification_state::SetTo<St>> {
        self._fields.1 = Option::Some(value.into());
        SendNotificationBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> SendNotificationBuilder<S, St>
where
    St: send_notification_state::State,
    St::To: send_notification_state::IsSet,
    St::From: send_notification_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> SendNotification<S> {
        SendNotification {
            from: self._fields.0.unwrap(),
            to: 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<SmolStr, Data<S>>,
    ) -> SendNotification<S> {
        SendNotification {
            from: self._fields.0.unwrap(),
            to: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}