Struct plaid_openapi::LinkTokenCreateRequestUser
source · [−]pub struct LinkTokenCreateRequestUser {
pub client_user_id: String,
pub legal_name: Option<String>,
pub phone_number: Option<String>,
pub phone_number_verified_time: Option<String>,
pub email_address: Option<String>,
pub email_address_verified_time: Option<String>,
pub ssn: Option<String>,
pub date_of_birth: Option<String>,
}Fields
client_user_id: StringA unique ID representing the end user. Typically this will be a user ID number from your application. Personally identifiable information, such as an email address or phone number, should not be used in the client_user_id. It is currently used as a means of searching logs for the given user in the Plaid Dashboard.
legal_name: Option<String>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<String>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<String>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.
Only pass a verification time for a phone number that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch.
Example: 2020-01-01T00:00:00Z
email_address: Option<String>The user’s email address. This field is optional, but required to enable the pre-authenticated returning user flow.
email_address_verified_time: Option<String>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.
Only pass a verification time for an email address that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch.
Example: 2020-01-01T00:00:00Z
ssn: Option<String>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<String>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
sourceimpl Debug for LinkTokenCreateRequestUser
impl Debug for LinkTokenCreateRequestUser
sourceimpl<'de> Deserialize<'de> for LinkTokenCreateRequestUser
impl<'de> Deserialize<'de> for LinkTokenCreateRequestUser
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for LinkTokenCreateRequestUser
impl Send for LinkTokenCreateRequestUser
impl Sync for LinkTokenCreateRequestUser
impl Unpin for LinkTokenCreateRequestUser
impl UnwindSafe for LinkTokenCreateRequestUser
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more