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: String

A 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

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more