#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_bsky::notification::Preferences;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetPreferences;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetPreferencesOutput<S: BosStr = DefaultStr> {
pub preferences: Preferences<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetPreferencesResponse;
impl jacquard_common::xrpc::XrpcResp for GetPreferencesResponse {
const NSID: &'static str = "app.bsky.notification.getPreferences";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetPreferencesOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl jacquard_common::xrpc::XrpcRequest for GetPreferences {
const NSID: &'static str = "app.bsky.notification.getPreferences";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetPreferencesResponse;
}
pub struct GetPreferencesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetPreferencesRequest {
const PATH: &'static str = "/xrpc/app.bsky.notification.getPreferences";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetPreferences;
type Response = GetPreferencesResponse;
}