Class StoreCredentials
Credentials for subsequent web service requests
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| EntityId | System.Int32 | A unique int32 value corresponding to the FI's RDA merchant in the EPS system. Also known as MID. EPS will provide this. |
| StoreId | System.Int64 | A unique int64 web service user ID systematically generated corresponding to the FI RDA merchant. EPS will provide this. |
| StoreKey | System.String | A unique string value password systematically generated upon installing a web service user ID. The password corresponds with the StoreID. EPS will provide this. |
Examples
{
"__type": "StoreCredentials:#JackHenry.Eps.Mobile.RDAAdmin",
"StoreId": 0,
"StoreKey": "String Content",
"EntityId": 0
}
Methods
Validate(IValidatorContext)
Declaration
public void Validate(IValidatorContext context)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| JHA.EPS.SharedService.Common.Validator.IValidatorContext | context |
Exceptions
| TYPE | DESCRIPTION |
|---|---|
| JHA.EPS.SharedService.Common.Validator.ValidationResult | StoreId must be a valid number |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | EntityId must be a valid number |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | StoreKey cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | StoreKey must be between 1-2000 characters |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | StoreKey must contain only visible characters |