Struct plaid::link_token::LinkTokenUser [−][src]
Fields
client_user_id: &'a strA unique ID representing the end user.
legal_name: Option<&'a str>The user's full legal name. This is an optional field used in the returning user experience to associate Items to the user.
phone_number: Option<&'a str>The user's phone number in E.164 format. This field is optional, but required to enable the returning user experience.
phone_number_verified_time: Option<DateTime<Utc>>The date and time the phone number was verified in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). This field is optional, but required to enable any returning user experience.
email_address: Option<&'a str>The user's email address. This field is optional, but required to enable the pre-authenticated returning user flow.
email_address_verified_time: Option<DateTime<Utc>>The date and time the email address was verified in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). This is an optional field used in the returning user experience.
ssn: Option<&'a str>To be provided in the format "ddd-dd-dddd". This field is optional and will support not-yet-implemented functionality for new products.
date_of_birth: Option<&'a str>To be provided in the format "yyyy-mm-dd". This field is optional and will support not-yet-implemented functionality for new products.
Trait Implementations
impl<'a> Clone for LinkTokenUser<'a>[src]
fn clone(&self) -> LinkTokenUser<'a>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a> Debug for LinkTokenUser<'a>[src]
impl Default for LinkTokenUser<'_>[src]
impl<'a> Serialize for LinkTokenUser<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for LinkTokenUser<'a>[src]
impl<'a> Send for LinkTokenUser<'a>[src]
impl<'a> Sync for LinkTokenUser<'a>[src]
impl<'a> Unpin for LinkTokenUser<'a>[src]
impl<'a> UnwindSafe for LinkTokenUser<'a>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,