Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allows for pre-matched RUX (Returning User Experience) #56

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions src/Plaid/Entity/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,40 @@ public class User
/// <value>The client user id.</value>
[JsonProperty("client_user_id")]
public string ClientUserId { get; set; }

/// <summary>
/// Gets or sets the client legal name.
/// </summary>
/// <value>The client legal name.</value>
[JsonProperty("legal_name")]
public string LegalName { get; set; }

/// <summary>
/// Gets or sets the client phone number.
/// </summary>
/// <value>The client phone number.</value>
[JsonProperty("phone_number")]
public string PhoneNumber { get; set; }

/// <summary>
/// Gets or sets the verification time of the client phone number.
/// </summary>
/// <value>The verification time of the client phone number.</value>
[JsonProperty("phone_number_verified_time")]
public string PhoneNumberVerifiedTime { get; set; }

/// <summary>
/// Gets or sets the client email address.
/// </summary>
/// <value>The client email address.</value>
[JsonProperty("email_address")]
public string EmailAddress { get; set; }

/// <summary>
/// Gets or sets the verification time of the client email address.
/// </summary>
/// <value>The verification time of the client email address.</value>
[JsonProperty("email_address_verified_time")]
public string EmailAddressVerifiedTime { get; set; }
}
}
35 changes: 35 additions & 0 deletions src/Plaid/Management/CreateLinkTokenRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,41 @@ public struct UserInfo
/// <value>The client user id.</value>
[JsonProperty("client_user_id")]
public string ClientUserId { get; set; }

/// <summary>
/// Gets or sets the client legal name.
/// </summary>
/// <value>The client legal name.</value>
[JsonProperty("legal_name")]
public string LegalName { get; set; }

/// <summary>
/// Gets or sets the client phone number.
/// </summary>
/// <value>The client phone number.</value>
[JsonProperty("phone_number")]
public string PhoneNumber { get; set; }

/// <summary>
/// Gets or sets the verification time of the client phone number.
/// </summary>
/// <value>The verification time of the client phone number.</value>
[JsonProperty("phone_number_verified_time")]
public string PhoneNumberVerifiedTime { get; set; }

/// <summary>
/// Gets or sets the client email address.
/// </summary>
/// <value>The client email address.</value>
[JsonProperty("email_address")]
public string EmailAddress { get; set; }

/// <summary>
/// Gets or sets the verification time of the client email address.
/// </summary>
/// <value>The verification time of the client email address.</value>
[JsonProperty("email_address_verified_time")]
public string EmailAddressVerifiedTime { get; set; }
}
}
}