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