#[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::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::feed::FeedGeneratorsView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetFeedGenerators {
#[serde(skip_serializing_if = "Option::is_none")]
pub size: Option<i64>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetFeedGeneratorsOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: FeedGeneratorsView<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetFeedGeneratorsResponse;
impl jacquard_common::xrpc::XrpcResp for GetFeedGeneratorsResponse {
const NSID: &'static str = "app.rocksky.feed.getFeedGenerators";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetFeedGeneratorsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl jacquard_common::xrpc::XrpcRequest for GetFeedGenerators {
const NSID: &'static str = "app.rocksky.feed.getFeedGenerators";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetFeedGeneratorsResponse;
}
pub struct GetFeedGeneratorsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetFeedGeneratorsRequest {
const PATH: &'static str = "/xrpc/app.rocksky.feed.getFeedGenerators";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetFeedGenerators;
type Response = GetFeedGeneratorsResponse;
}
pub mod get_feed_generators_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetFeedGeneratorsBuilder<St: get_feed_generators_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>,),
}
impl GetFeedGenerators {
pub fn new() -> GetFeedGeneratorsBuilder<get_feed_generators_state::Empty> {
GetFeedGeneratorsBuilder::new()
}
}
impl GetFeedGeneratorsBuilder<get_feed_generators_state::Empty> {
pub fn new() -> Self {
GetFeedGeneratorsBuilder {
_state: PhantomData,
_fields: (None,),
}
}
}
impl<St: get_feed_generators_state::State> GetFeedGeneratorsBuilder<St> {
pub fn size(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_size(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<St> GetFeedGeneratorsBuilder<St>
where
St: get_feed_generators_state::State,
{
pub fn build(self) -> GetFeedGenerators {
GetFeedGenerators {
size: self._fields.0,
}
}
}