diff --git a/src/Plaid/Entity/User.cs b/src/Plaid/Entity/User.cs index 84ffbba..41e7b1d 100644 --- a/src/Plaid/Entity/User.cs +++ b/src/Plaid/Entity/User.cs @@ -13,5 +13,40 @@ public class User /// The client user id. [JsonProperty("client_user_id")] public string ClientUserId { get; set; } + + /// + /// Gets or sets the client legal name. + /// + /// The client legal name. + [JsonProperty("legal_name")] + public string LegalName { get; set; } + + /// + /// Gets or sets the client phone number. + /// + /// The client phone number. + [JsonProperty("phone_number")] + public string PhoneNumber { get; set; } + + /// + /// Gets or sets the verification time of the client phone number. + /// + /// The verification time of the client phone number. + [JsonProperty("phone_number_verified_time")] + public string PhoneNumberVerifiedTime { get; set; } + + /// + /// Gets or sets the client email address. + /// + /// The client email address. + [JsonProperty("email_address")] + public string EmailAddress { get; set; } + + /// + /// Gets or sets the verification time of the client email address. + /// + /// The verification time of the client email address. + [JsonProperty("email_address_verified_time")] + public string EmailAddressVerifiedTime { get; set; } } } diff --git a/src/Plaid/Management/CreateLinkTokenRequest.cs b/src/Plaid/Management/CreateLinkTokenRequest.cs index 5c45ecc..8517eeb 100644 --- a/src/Plaid/Management/CreateLinkTokenRequest.cs +++ b/src/Plaid/Management/CreateLinkTokenRequest.cs @@ -106,6 +106,41 @@ public struct UserInfo /// The client user id. [JsonProperty("client_user_id")] public string ClientUserId { get; set; } + + /// + /// Gets or sets the client legal name. + /// + /// The client legal name. + [JsonProperty("legal_name")] + public string LegalName { get; set; } + + /// + /// Gets or sets the client phone number. + /// + /// The client phone number. + [JsonProperty("phone_number")] + public string PhoneNumber { get; set; } + + /// + /// Gets or sets the verification time of the client phone number. + /// + /// The verification time of the client phone number. + [JsonProperty("phone_number_verified_time")] + public string PhoneNumberVerifiedTime { get; set; } + + /// + /// Gets or sets the client email address. + /// + /// The client email address. + [JsonProperty("email_address")] + public string EmailAddress { get; set; } + + /// + /// Gets or sets the verification time of the client email address. + /// + /// The verification time of the client email address. + [JsonProperty("email_address_verified_time")] + public string EmailAddressVerifiedTime { get; set; } } } }