pub struct CreateLinkAuthIntentInput {
pub email: Option<String>,
}Expand description
Input for creating a Link auth intent to initiate Stripe onramp authentication.
JSON schema
{
"title": "CreateLinkAuthIntentInput",
"description": "Input for creating a Link auth intent to initiate
Stripe onramp authentication.",
"type": "object",
"properties": {
"email": {
"type": "string",
"format": "email"
}
},
"x-stainless-model": "onramps.create_link_auth_intent_input"
}Fields§
§email: Option<String>Trait Implementations§
Source§impl Clone for CreateLinkAuthIntentInput
impl Clone for CreateLinkAuthIntentInput
Source§fn clone(&self) -> CreateLinkAuthIntentInput
fn clone(&self) -> CreateLinkAuthIntentInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateLinkAuthIntentInput
impl Debug for CreateLinkAuthIntentInput
Source§impl Default for CreateLinkAuthIntentInput
impl Default for CreateLinkAuthIntentInput
Source§impl<'de> Deserialize<'de> for CreateLinkAuthIntentInput
impl<'de> Deserialize<'de> for CreateLinkAuthIntentInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&CreateLinkAuthIntentInput> for CreateLinkAuthIntentInput
impl From<&CreateLinkAuthIntentInput> for CreateLinkAuthIntentInput
Source§fn from(value: &CreateLinkAuthIntentInput) -> Self
fn from(value: &CreateLinkAuthIntentInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateLinkAuthIntentInput
impl RefUnwindSafe for CreateLinkAuthIntentInput
impl Send for CreateLinkAuthIntentInput
impl Sync for CreateLinkAuthIntentInput
impl Unpin for CreateLinkAuthIntentInput
impl UnsafeUnpin for CreateLinkAuthIntentInput
impl UnwindSafe for CreateLinkAuthIntentInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more