#[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> {
pub from: Did<S>,
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>>>,
}
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;
}
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 {}
}
pub trait State: sealed::Sealed {
type To;
type From;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type To = Unset;
type From = Unset;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct to(());
pub struct from(());
}
}
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> {
pub fn new() -> SendNotificationBuilder<S, send_notification_state::Empty> {
SendNotificationBuilder::new()
}
}
impl<S: BosStr> SendNotificationBuilder<S, send_notification_state::Empty> {
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,
{
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,
{
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,
{
pub fn build(self) -> SendNotification<S> {
SendNotification {
from: self._fields.0.unwrap(),
to: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
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),
}
}
}