Class DataField
Optional or Required information to be captured during a deposit.
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| FieldName | string | The dynamic field name used to capture custom values. |
| FieldType | FieldType | A grouping to identify where to show the fields. |
| IsRequired | bool | Indicates that the field input is required. |
| Text | string | The text to display to the user. |
| Validation | string | The regular expression used to validate the custom field. |
| ValidationMessage | string | The message to display when the validation fails. |
| Value | string | The value the user input. |
FieldType
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| Transaction | 0 | The Field is a Transaction Data Field |
| Customer | 1 | The Field is a Customer Data Field |
Examples
{
"__type":"DataField:#JackHenry.Eps.Mobile.RDC",
"FieldName":"String Content",
"Text":"String Content",
"IsRequired":true,
"Value":"String Content",
"Validation":"String Content",
"ValidationMessage":"String Content",
"FieldType":FieldType.Transaction,
}