Class GetVelocityResponse
Response containing array of velocity records
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| RequestId | System.string | Unique identifier used to identify the request associated with the response. |
| Result | ResponseResultType | Value indicating type of result. Possible values: Error (default), Success, ValidationError, NoChange |
| ResultCode | System.string | Can be Error or Resource code depending on type of result. |
| ResultMessage | System.string | Message regarding details of the Result. |
| ValidationResults | ValidationResult[] | Array of ValidationResult objects containing messages regarding input validation. |
| Velocity | Velocity | The velocity record |
Velocity
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| Action | TemplateAction | Approve, Decline, Suspend. How to handle a transaction that exceeds velocity limits. Required field. |
| DailyAmountLimit | System.Decimal | Decimal field max value is 999999999. Value must be less than or equal to PeriodAmountLimit. Limit of total amount per day. Required field. |
| DailyCountLimit | System.Int32 | Decimal field max value is 999999999. Value must be less than or equal to PeriodCountLimit. Limit of checks per day. Required field. |
| PeriodAmountLimit | System.Decimal | Decimal field max value is 999999999. Value must be greater than or equal to DailyAmountLimit. Limit of checks per period. Required field. |
| PeriodCountLimit | System.Int32 | Decimal field max value is 999999999. Value must be greater than or equal to DailyCountLimit. Required field. |
| SingleAmountLimit | System.Decimal | Limit of amount per item |
| TemplateName | System.String | Name of the template that exists in the EPS system. Max length is 50 characters. Must be unique. |
Example
{
"__type":"GetVelocityResponse:#JackHenry.Eps.Mobile.RDAAdmin",
"Velocity":
{
"__type":"Velocity:#JackHenry.Eps.Mobile.RDAAdmin",
"TemplateName":"String Content",
"DailyCountLimit":0,
"SingleAmountLimit":12678967.54,
"DailyAmountLimit":12678967.54,
"PeriodCountLimit":0,
"PeriodAmountLimit":12678967.54,
"Action":
}
}
Methods
Exception(string)
Declaration
public void Exception(string message)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | message |
NullRequestResonse()
Declaration
public static Response NullRequestResonse()
Return Value
| TYPE | DESCRIPTION |
|---|---|
| Response |
Success()
Declaration
public void Success()
Success(String)
Declaration
public void Success(string resultMessage)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | resultMessage |