Class CustomerCredentials
The credentials used if you want to authenticate a Customer
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| PhoneKey | System.String | REQUIRED. The unique id for the phone. A GUID created by the app vendor at first time use and stored in long term storage on the device which is intended to be unique to the device and application. Limit of 100 characters. Printable characters only. |
| Company | System.String | REQUIRED. A string value. The users company name in the EPS system. This value is system generated and provided by EPS and correlates to the Financial Institutions RDA MID. |
| Password | System.String | REQUIRED. A string value. The user's password in the EPS system assigned during user registration or by the user. |
| UserName | System.String | REQUIRED. A string value. The user's direct login name in the EPS system assigned during user registration. |
Examples
{
"__type": "CustomerCredentials:#JackHenry.Eps.Mobile.RDA",
"UserName": "String Content",
"Password": "String Content",
"Company": "String Content"
}
Methods
Validate(IValidatorContext)
Declaration
public override void Validate(IValidatorContext context)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| JHA.EPS.SharedService.Common.Validator.IValidatorContext | context |
Exceptions
| TYPE | DESCRIPTION |
|---|---|
| JHA.EPS.SharedService.Common.Validator.ValidationResult | Company cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | Password cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | UserName cannot be null |