#[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 GetStripeIntent<S: BosStr = DefaultStr> {
pub amount: i64,
pub id: S,
pub iss: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub token: Option<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetStripeIntentOutput<S: BosStr = DefaultStr> {
pub customer: S,
pub customer_session: S,
pub ephemeral_key: S,
pub payment_intent: S,
pub publishable_key: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetStripeIntentResponse;
impl jacquard_common::xrpc::XrpcResp for GetStripeIntentResponse {
const NSID: &'static str = "app.ocho.payment.getStripeIntent";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStripeIntentOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetStripeIntent<S> {
const NSID: &'static str = "app.ocho.payment.getStripeIntent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStripeIntentResponse;
}
pub struct GetStripeIntentRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStripeIntentRequest {
const PATH: &'static str = "/xrpc/app.ocho.payment.getStripeIntent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetStripeIntent<S>;
type Response = GetStripeIntentResponse;
}
pub mod get_stripe_intent_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 Iss;
type Amount;
type Id;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Iss = Unset;
type Amount = Unset;
type Id = Unset;
}
pub struct SetIss<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIss<St> {}
impl<St: State> State for SetIss<St> {
type Iss = Set<members::iss>;
type Amount = St::Amount;
type Id = St::Id;
}
pub struct SetAmount<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAmount<St> {}
impl<St: State> State for SetAmount<St> {
type Iss = St::Iss;
type Amount = Set<members::amount>;
type Id = St::Id;
}
pub struct SetId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetId<St> {}
impl<St: State> State for SetId<St> {
type Iss = St::Iss;
type Amount = St::Amount;
type Id = Set<members::id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct iss(());
pub struct amount(());
pub struct id(());
}
}
pub struct GetStripeIntentBuilder<S: BosStr, St: get_stripe_intent_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<S>, Option<Did<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetStripeIntent<S> {
pub fn new() -> GetStripeIntentBuilder<S, get_stripe_intent_state::Empty> {
GetStripeIntentBuilder::new()
}
}
impl<S: BosStr> GetStripeIntentBuilder<S, get_stripe_intent_state::Empty> {
pub fn new() -> Self {
GetStripeIntentBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStripeIntentBuilder<S, St>
where
St: get_stripe_intent_state::State,
St::Amount: get_stripe_intent_state::IsUnset,
{
pub fn amount(
mut self,
value: impl Into<i64>,
) -> GetStripeIntentBuilder<S, get_stripe_intent_state::SetAmount<St>> {
self._fields.0 = Option::Some(value.into());
GetStripeIntentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStripeIntentBuilder<S, St>
where
St: get_stripe_intent_state::State,
St::Id: get_stripe_intent_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<S>,
) -> GetStripeIntentBuilder<S, get_stripe_intent_state::SetId<St>> {
self._fields.1 = Option::Some(value.into());
GetStripeIntentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStripeIntentBuilder<S, St>
where
St: get_stripe_intent_state::State,
St::Iss: get_stripe_intent_state::IsUnset,
{
pub fn iss(
mut self,
value: impl Into<Did<S>>,
) -> GetStripeIntentBuilder<S, get_stripe_intent_state::SetIss<St>> {
self._fields.2 = Option::Some(value.into());
GetStripeIntentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_stripe_intent_state::State> GetStripeIntentBuilder<S, St> {
pub fn token(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_token(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> GetStripeIntentBuilder<S, St>
where
St: get_stripe_intent_state::State,
St::Iss: get_stripe_intent_state::IsSet,
St::Amount: get_stripe_intent_state::IsSet,
St::Id: get_stripe_intent_state::IsSet,
{
pub fn build(self) -> GetStripeIntent<S> {
GetStripeIntent {
amount: self._fields.0.unwrap(),
id: self._fields.1.unwrap(),
iss: self._fields.2.unwrap(),
token: self._fields.3,
}
}
}