#[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::AtUri;
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 AcceptContribution<S: BosStr = DefaultStr> {
pub contribution_patch: AtUri<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)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct AcceptContributionOutput<S: BosStr = DefaultStr> {
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct AcceptContributionResponse;
impl jacquard_common::xrpc::XrpcResp for AcceptContributionResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.acceptContribution";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = AcceptContributionOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for AcceptContribution<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.acceptContribution";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = AcceptContributionResponse;
}
pub struct AcceptContributionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for AcceptContributionRequest {
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.acceptContribution";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = AcceptContribution<S>;
type Response = AcceptContributionResponse;
}
pub mod accept_contribution_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 ContributionPatch;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ContributionPatch = Unset;
}
pub struct SetContributionPatch<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContributionPatch<St> {}
impl<St: State> State for SetContributionPatch<St> {
type ContributionPatch = Set<members::contribution_patch>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct contribution_patch(());
}
}
pub struct AcceptContributionBuilder<
St: accept_contribution_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>,),
_type: PhantomData<fn() -> S>,
}
impl AcceptContribution<DefaultStr> {
pub fn new() -> AcceptContributionBuilder<
accept_contribution_state::Empty,
DefaultStr,
> {
AcceptContributionBuilder::new()
}
}
impl<S: BosStr> AcceptContribution<S> {
pub fn builder() -> AcceptContributionBuilder<accept_contribution_state::Empty, S> {
AcceptContributionBuilder::builder()
}
}
impl AcceptContributionBuilder<accept_contribution_state::Empty, DefaultStr> {
pub fn new() -> Self {
AcceptContributionBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> AcceptContributionBuilder<accept_contribution_state::Empty, S> {
pub fn builder() -> Self {
AcceptContributionBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> AcceptContributionBuilder<St, S>
where
St: accept_contribution_state::State,
St::ContributionPatch: accept_contribution_state::IsUnset,
{
pub fn contribution_patch(
mut self,
value: impl Into<AtUri<S>>,
) -> AcceptContributionBuilder<
accept_contribution_state::SetContributionPatch<St>,
S,
> {
self._fields.0 = Option::Some(value.into());
AcceptContributionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> AcceptContributionBuilder<St, S>
where
St: accept_contribution_state::State,
St::ContributionPatch: accept_contribution_state::IsSet,
{
pub fn build(self) -> AcceptContribution<S> {
AcceptContribution {
contribution_patch: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> AcceptContribution<S> {
AcceptContribution {
contribution_patch: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}