pub struct LinkedAccountAuthorizationKey {
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub public_key: String,
pub type_: LinkedAccountAuthorizationKeyType,
pub verified_at: f64,
}Expand description
LinkedAccountAuthorizationKey
JSON schema
{
"title": "Authorization Key",
"type": "object",
"required": [
"first_verified_at",
"latest_verified_at",
"public_key",
"type",
"verified_at"
],
"properties": {
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"public_key": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"authorization_key"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§public_key: String§type_: LinkedAccountAuthorizationKeyType§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountAuthorizationKey
impl Clone for LinkedAccountAuthorizationKey
Source§fn clone(&self) -> LinkedAccountAuthorizationKey
fn clone(&self) -> LinkedAccountAuthorizationKey
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<'de> Deserialize<'de> for LinkedAccountAuthorizationKey
impl<'de> Deserialize<'de> for LinkedAccountAuthorizationKey
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountAuthorizationKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountAuthorizationKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountAuthorizationKey> for LinkedAccountAuthorizationKey
impl From<&LinkedAccountAuthorizationKey> for LinkedAccountAuthorizationKey
Source§fn from(value: &LinkedAccountAuthorizationKey) -> LinkedAccountAuthorizationKey
fn from(value: &LinkedAccountAuthorizationKey) -> LinkedAccountAuthorizationKey
Converts to this type from the input type.
Source§impl From<LinkedAccountAuthorizationKey> for LinkedAccount
impl From<LinkedAccountAuthorizationKey> for LinkedAccount
Source§fn from(value: LinkedAccountAuthorizationKey) -> LinkedAccount
fn from(value: LinkedAccountAuthorizationKey) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountAuthorizationKey
impl Serialize for LinkedAccountAuthorizationKey
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 LinkedAccountAuthorizationKey
impl RefUnwindSafe for LinkedAccountAuthorizationKey
impl Send for LinkedAccountAuthorizationKey
impl Sync for LinkedAccountAuthorizationKey
impl Unpin for LinkedAccountAuthorizationKey
impl UnwindSafe for LinkedAccountAuthorizationKey
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