Class Template
Object representing a Consumer Velocity template
Properties
| 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. |
| DefaultOption | DefaultOption | Indicates whether template is a default template. |
| Description | System.String | String value with a max length of 250 characters. A brief description of the template. Required field. Limit of total amount per period. Required field. |
| IsEnabled | System.Boolean | Indicates whether template is enabled or disabled |
| 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. |
Examples
{
"__type":"Template:#JackHenry.Eps.Mobile.RDAAdmin",
"TemplateName":"String Content",
"Description":"String Content",
"IsEnabled":true,
"DefaultOption":
"DailyCountLimit":0,
"SingleAmountLimit":12678967.54,
"DailyAmountLimit":12678967.54,
"PeriodCountLimit":0,
"PeriodAmountLimit":12678967.54,
"Action":
}