pub struct LinkAuthIntentCreated {
pub id: String,
pub status: LinkAuthIntentCreatedStatus,
}Expand description
Auth intent created. Pass id to authenticate().
JSON schema
{
"title": "LinkAuthIntentCreated",
"description": "Auth intent created. Pass id to authenticate().",
"type": "object",
"required": [
"id",
"status"
],
"properties": {
"id": {
"description": "The Link auth intent ID.",
"type": "string"
},
"status": {
"type": "string",
"enum": [
"created"
]
}
},
"x-stainless-model": "onramps.link_auth_intent_created"
}Fields§
§id: StringThe Link auth intent ID.
status: LinkAuthIntentCreatedStatusTrait Implementations§
Source§impl Clone for LinkAuthIntentCreated
impl Clone for LinkAuthIntentCreated
Source§fn clone(&self) -> LinkAuthIntentCreated
fn clone(&self) -> LinkAuthIntentCreated
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 LinkAuthIntentCreated
impl Debug for LinkAuthIntentCreated
Source§impl<'de> Deserialize<'de> for LinkAuthIntentCreated
impl<'de> Deserialize<'de> for LinkAuthIntentCreated
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<&LinkAuthIntentCreated> for LinkAuthIntentCreated
impl From<&LinkAuthIntentCreated> for LinkAuthIntentCreated
Source§fn from(value: &LinkAuthIntentCreated) -> Self
fn from(value: &LinkAuthIntentCreated) -> Self
Converts to this type from the input type.
Source§impl From<LinkAuthIntentCreated> for CreateLinkAuthIntentResponseData
impl From<LinkAuthIntentCreated> for CreateLinkAuthIntentResponseData
Source§fn from(value: LinkAuthIntentCreated) -> Self
fn from(value: LinkAuthIntentCreated) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkAuthIntentCreated
impl RefUnwindSafe for LinkAuthIntentCreated
impl Send for LinkAuthIntentCreated
impl Sync for LinkAuthIntentCreated
impl Unpin for LinkAuthIntentCreated
impl UnsafeUnpin for LinkAuthIntentCreated
impl UnwindSafe for LinkAuthIntentCreated
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