pub struct CreateLinkAuthIntentResponse {
pub data: CreateLinkAuthIntentResponseData,
}Expand description
The created Link auth intent.
JSON schema
{
"title": "CreateLinkAuthIntentResponse",
"description": "The created Link auth intent.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"oneOf": [
{
"$ref": "#/components/schemas/LinkAuthIntentCreated"
},
{
"$ref": "#/components/schemas/LinkAuthIntentNoAccount"
}
]
}
},
"x-stainless-model": "onramps.create_link_auth_intent_response"
}Fields§
§data: CreateLinkAuthIntentResponseDataTrait Implementations§
Source§impl Clone for CreateLinkAuthIntentResponse
impl Clone for CreateLinkAuthIntentResponse
Source§fn clone(&self) -> CreateLinkAuthIntentResponse
fn clone(&self) -> CreateLinkAuthIntentResponse
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 CreateLinkAuthIntentResponse
impl Debug for CreateLinkAuthIntentResponse
Source§impl<'de> Deserialize<'de> for CreateLinkAuthIntentResponse
impl<'de> Deserialize<'de> for CreateLinkAuthIntentResponse
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<&CreateLinkAuthIntentResponse> for CreateLinkAuthIntentResponse
impl From<&CreateLinkAuthIntentResponse> for CreateLinkAuthIntentResponse
Source§fn from(value: &CreateLinkAuthIntentResponse) -> Self
fn from(value: &CreateLinkAuthIntentResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateLinkAuthIntentResponse
impl RefUnwindSafe for CreateLinkAuthIntentResponse
impl Send for CreateLinkAuthIntentResponse
impl Sync for CreateLinkAuthIntentResponse
impl Unpin for CreateLinkAuthIntentResponse
impl UnsafeUnpin for CreateLinkAuthIntentResponse
impl UnwindSafe for CreateLinkAuthIntentResponse
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