#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::org_passingreads::book::StatefulBook;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetLocationBooks<S: BosStr = DefaultStr> {
pub h3: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetLocationBooksOutput<S: BosStr = DefaultStr> {
pub books: Vec<StatefulBook<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub location_name: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetLocationBooksResponse;
impl jacquard_common::xrpc::XrpcResp for GetLocationBooksResponse {
const NSID: &'static str = "org.passingreads.book.getLocationBooks";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetLocationBooksOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetLocationBooks<S> {
const NSID: &'static str = "org.passingreads.book.getLocationBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetLocationBooksResponse;
}
pub struct GetLocationBooksRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetLocationBooksRequest {
const PATH: &'static str = "/xrpc/org.passingreads.book.getLocationBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetLocationBooks<S>;
type Response = GetLocationBooksResponse;
}
pub mod get_location_books_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type H3;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type H3 = Unset;
}
pub struct SetH3<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetH3<St> {}
impl<St: State> State for SetH3<St> {
type H3 = Set<members::h3>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct h3(());
}
}
pub struct GetLocationBooksBuilder<S: BosStr, St: get_location_books_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetLocationBooks<S> {
pub fn new() -> GetLocationBooksBuilder<S, get_location_books_state::Empty> {
GetLocationBooksBuilder::new()
}
}
impl<S: BosStr> GetLocationBooksBuilder<S, get_location_books_state::Empty> {
pub fn new() -> Self {
GetLocationBooksBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetLocationBooksBuilder<S, St>
where
St: get_location_books_state::State,
St::H3: get_location_books_state::IsUnset,
{
pub fn h3(
mut self,
value: impl Into<S>,
) -> GetLocationBooksBuilder<S, get_location_books_state::SetH3<St>> {
self._fields.0 = Option::Some(value.into());
GetLocationBooksBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetLocationBooksBuilder<S, St>
where
St: get_location_books_state::State,
St::H3: get_location_books_state::IsSet,
{
pub fn build(self) -> GetLocationBooks<S> {
GetLocationBooks {
h3: self._fields.0.unwrap(),
}
}
}