pub struct LinkedAccountLineInput {
pub email: Option<String>,
pub name: Option<LinkedAccountLineInputName>,
pub profile_picture_url: Option<String>,
pub subject: LinkedAccountLineInputSubject,
pub type_: LinkedAccountLineInputType,
}Expand description
LinkedAccountLineInput
JSON schema
{
"title": "LINE",
"type": "object",
"required": [
"subject",
"type"
],
"properties": {
"email": {
"type": "string",
"format": "email"
},
"name": {
"type": "string",
"maxLength": 30,
"minLength": 1
},
"profile_picture_url": {
"type": "string",
"format": "uri"
},
"subject": {
"type": "string",
"pattern": "^[\\x00-\\x7F]{1,256}$"
},
"type": {
"type": "string",
"enum": [
"line_oauth"
]
}
}
}Fields§
§email: Option<String>§name: Option<LinkedAccountLineInputName>§profile_picture_url: Option<String>§subject: LinkedAccountLineInputSubject§type_: LinkedAccountLineInputTypeTrait Implementations§
Source§impl Clone for LinkedAccountLineInput
impl Clone for LinkedAccountLineInput
Source§fn clone(&self) -> LinkedAccountLineInput
fn clone(&self) -> LinkedAccountLineInput
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 LinkedAccountLineInput
impl Debug for LinkedAccountLineInput
Source§impl<'de> Deserialize<'de> for LinkedAccountLineInput
impl<'de> Deserialize<'de> for LinkedAccountLineInput
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<&LinkedAccountLineInput> for LinkedAccountLineInput
impl From<&LinkedAccountLineInput> for LinkedAccountLineInput
Source§fn from(value: &LinkedAccountLineInput) -> Self
fn from(value: &LinkedAccountLineInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountLineInput> for LinkedAccountInput
impl From<LinkedAccountLineInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountLineInput) -> Self
fn from(value: LinkedAccountLineInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountLineInput
impl RefUnwindSafe for LinkedAccountLineInput
impl Send for LinkedAccountLineInput
impl Sync for LinkedAccountLineInput
impl Unpin for LinkedAccountLineInput
impl UnwindSafe for LinkedAccountLineInput
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