pub struct LinkedAccountLineOauth {
pub email: Option<String>,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub name: Option<String>,
pub profile_picture_url: Option<String>,
pub subject: String,
pub type_: LinkedAccountLineOauthType,
pub verified_at: f64,
}Expand description
LinkedAccountLineOauth
JSON schema
{
"title": "Line",
"type": "object",
"required": [
"email",
"first_verified_at",
"latest_verified_at",
"name",
"profile_picture_url",
"subject",
"type",
"verified_at"
],
"properties": {
"email": {
"type": [
"string",
"null"
]
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"profile_picture_url": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"line_oauth"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§email: Option<String>§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§name: Option<String>§profile_picture_url: Option<String>§subject: String§type_: LinkedAccountLineOauthType§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountLineOauth
impl Clone for LinkedAccountLineOauth
Source§fn clone(&self) -> LinkedAccountLineOauth
fn clone(&self) -> LinkedAccountLineOauth
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 LinkedAccountLineOauth
impl Debug for LinkedAccountLineOauth
Source§impl<'de> Deserialize<'de> for LinkedAccountLineOauth
impl<'de> Deserialize<'de> for LinkedAccountLineOauth
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<&LinkedAccountLineOauth> for LinkedAccountLineOauth
impl From<&LinkedAccountLineOauth> for LinkedAccountLineOauth
Source§fn from(value: &LinkedAccountLineOauth) -> Self
fn from(value: &LinkedAccountLineOauth) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountLineOauth> for LinkedAccount
impl From<LinkedAccountLineOauth> for LinkedAccount
Source§fn from(value: LinkedAccountLineOauth) -> Self
fn from(value: LinkedAccountLineOauth) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountLineOauth
impl RefUnwindSafe for LinkedAccountLineOauth
impl Send for LinkedAccountLineOauth
impl Sync for LinkedAccountLineOauth
impl Unpin for LinkedAccountLineOauth
impl UnwindSafe for LinkedAccountLineOauth
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