#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetStripeIntent<'a> {
pub amount: i64,
#[serde(borrow)]
pub id: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub iss: jacquard_common::types::string::Did<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub token: std::option::Option<jacquard_common::CowStr<'a>>,
}
pub mod get_stripe_intent_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 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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIss<S> {}
impl<S: State> State for SetIss<S> {
type Iss = Set<members::iss>;
type Amount = S::Amount;
type Id = S::Id;
}
pub struct SetAmount<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAmount<S> {}
impl<S: State> State for SetAmount<S> {
type Iss = S::Iss;
type Amount = Set<members::amount>;
type Id = S::Id;
}
pub struct SetId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetId<S> {}
impl<S: State> State for SetId<S> {
type Iss = S::Iss;
type Amount = S::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<'a, S: get_stripe_intent_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<i64>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::types::string::Did<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> GetStripeIntent<'a> {
pub fn new() -> GetStripeIntentBuilder<'a, get_stripe_intent_state::Empty> {
GetStripeIntentBuilder::new()
}
}
impl<'a> GetStripeIntentBuilder<'a, get_stripe_intent_state::Empty> {
pub fn new() -> Self {
GetStripeIntentBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetStripeIntentBuilder<'a, S>
where
S: get_stripe_intent_state::State,
S::Amount: get_stripe_intent_state::IsUnset,
{
pub fn amount(
mut self,
value: impl Into<i64>,
) -> GetStripeIntentBuilder<'a, get_stripe_intent_state::SetAmount<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
GetStripeIntentBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetStripeIntentBuilder<'a, S>
where
S: get_stripe_intent_state::State,
S::Id: get_stripe_intent_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> GetStripeIntentBuilder<'a, get_stripe_intent_state::SetId<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
GetStripeIntentBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetStripeIntentBuilder<'a, S>
where
S: get_stripe_intent_state::State,
S::Iss: get_stripe_intent_state::IsUnset,
{
pub fn iss(
mut self,
value: impl Into<jacquard_common::types::string::Did<'a>>,
) -> GetStripeIntentBuilder<'a, get_stripe_intent_state::SetIss<S>> {
self.__unsafe_private_named.2 = ::core::option::Option::Some(value.into());
GetStripeIntentBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: get_stripe_intent_state::State> GetStripeIntentBuilder<'a, S> {
pub fn token(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.3 = value.into();
self
}
pub fn maybe_token(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
self.__unsafe_private_named.3 = value;
self
}
}
impl<'a, S> GetStripeIntentBuilder<'a, S>
where
S: get_stripe_intent_state::State,
S::Iss: get_stripe_intent_state::IsSet,
S::Amount: get_stripe_intent_state::IsSet,
S::Id: get_stripe_intent_state::IsSet,
{
pub fn build(self) -> GetStripeIntent<'a> {
GetStripeIntent {
amount: self.__unsafe_private_named.0.unwrap(),
id: self.__unsafe_private_named.1.unwrap(),
iss: self.__unsafe_private_named.2.unwrap(),
token: self.__unsafe_private_named.3,
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic,
Default
)]
#[serde(rename_all = "camelCase")]
pub struct GetStripeIntentOutput<'a> {
#[serde(borrow)]
pub customer: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub customer_session: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub ephemeral_key: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub payment_intent: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub publishable_key: jacquard_common::CowStr<'a>,
}
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<'de> = GetStripeIntentOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetStripeIntent<'a> {
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<'de> = GetStripeIntent<'de>;
type Response = GetStripeIntentResponse;
}