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