pub struct LinkedAccountCrossApp {
pub embedded_wallets: Vec<LinkedAccountCrossAppEmbeddedWalletsItem>,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub provider_app_id: String,
pub smart_wallets: Vec<LinkedAccountCrossAppSmartWalletsItem>,
pub subject: String,
pub type_: LinkedAccountCrossAppType,
pub verified_at: f64,
}Expand description
LinkedAccountCrossApp
JSON schema
{
"title": "CrossApp",
"type": "object",
"required": [
"embedded_wallets",
"first_verified_at",
"latest_verified_at",
"provider_app_id",
"smart_wallets",
"subject",
"type",
"verified_at"
],
"properties": {
"embedded_wallets": {
"type": "array",
"items": {
"type": "object",
"required": [
"address"
],
"properties": {
"address": {
"type": "string"
}
}
}
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"provider_app_id": {
"type": "string"
},
"smart_wallets": {
"type": "array",
"items": {
"type": "object",
"required": [
"address"
],
"properties": {
"address": {
"type": "string"
}
}
}
},
"subject": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"cross_app"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§embedded_wallets: Vec<LinkedAccountCrossAppEmbeddedWalletsItem>§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§provider_app_id: String§smart_wallets: Vec<LinkedAccountCrossAppSmartWalletsItem>§subject: String§type_: LinkedAccountCrossAppType§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountCrossApp
impl Clone for LinkedAccountCrossApp
Source§fn clone(&self) -> LinkedAccountCrossApp
fn clone(&self) -> LinkedAccountCrossApp
Returns a duplicate of the value. Read more
1.0.0 · 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 LinkedAccountCrossApp
impl Debug for LinkedAccountCrossApp
Source§impl<'de> Deserialize<'de> for LinkedAccountCrossApp
impl<'de> Deserialize<'de> for LinkedAccountCrossApp
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountCrossApp, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountCrossApp, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountCrossApp> for LinkedAccountCrossApp
impl From<&LinkedAccountCrossApp> for LinkedAccountCrossApp
Source§fn from(value: &LinkedAccountCrossApp) -> LinkedAccountCrossApp
fn from(value: &LinkedAccountCrossApp) -> LinkedAccountCrossApp
Converts to this type from the input type.
Source§impl From<LinkedAccountCrossApp> for LinkedAccount
impl From<LinkedAccountCrossApp> for LinkedAccount
Source§fn from(value: LinkedAccountCrossApp) -> LinkedAccount
fn from(value: LinkedAccountCrossApp) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountCrossApp
impl Serialize for LinkedAccountCrossApp
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LinkedAccountCrossApp
impl RefUnwindSafe for LinkedAccountCrossApp
impl Send for LinkedAccountCrossApp
impl Sync for LinkedAccountCrossApp
impl Unpin for LinkedAccountCrossApp
impl UnwindSafe for LinkedAccountCrossApp
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