#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
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 SwapLaunchToken<S: BosStr = DefaultStr> {
pub launch_token: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SwapLaunchTokenOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<Did<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub handle: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
pub token: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct SwapLaunchTokenResponse;
impl jacquard_common::xrpc::XrpcResp for SwapLaunchTokenResponse {
const NSID: &'static str = "app.ocho.server.swapLaunchToken";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SwapLaunchTokenOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for SwapLaunchToken<S> {
const NSID: &'static str = "app.ocho.server.swapLaunchToken";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = SwapLaunchTokenResponse;
}
pub struct SwapLaunchTokenRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SwapLaunchTokenRequest {
const PATH: &'static str = "/xrpc/app.ocho.server.swapLaunchToken";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = SwapLaunchToken<S>;
type Response = SwapLaunchTokenResponse;
}
pub mod swap_launch_token_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 LaunchToken;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type LaunchToken = Unset;
}
pub struct SetLaunchToken<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLaunchToken<St> {}
impl<St: State> State for SetLaunchToken<St> {
type LaunchToken = Set<members::launch_token>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct launch_token(());
}
}
pub struct SwapLaunchTokenBuilder<S: BosStr, St: swap_launch_token_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> SwapLaunchToken<S> {
pub fn new() -> SwapLaunchTokenBuilder<S, swap_launch_token_state::Empty> {
SwapLaunchTokenBuilder::new()
}
}
impl<S: BosStr> SwapLaunchTokenBuilder<S, swap_launch_token_state::Empty> {
pub fn new() -> Self {
SwapLaunchTokenBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SwapLaunchTokenBuilder<S, St>
where
St: swap_launch_token_state::State,
St::LaunchToken: swap_launch_token_state::IsUnset,
{
pub fn launch_token(
mut self,
value: impl Into<S>,
) -> SwapLaunchTokenBuilder<S, swap_launch_token_state::SetLaunchToken<St>> {
self._fields.0 = Option::Some(value.into());
SwapLaunchTokenBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SwapLaunchTokenBuilder<S, St>
where
St: swap_launch_token_state::State,
St::LaunchToken: swap_launch_token_state::IsSet,
{
pub fn build(self) -> SwapLaunchToken<S> {
SwapLaunchToken {
launch_token: self._fields.0.unwrap(),
}
}
}