Skip to main content

Class DataField

Optional or Required information to be captured during a deposit.


Properties

NAMETYPEDESCRIPTION
FieldNamestringThe dynamic field name used to capture custom values.
FieldTypeFieldTypeA grouping to identify where to show the fields.
IsRequiredboolIndicates that the field input is required.
TextstringThe text to display to the user.
ValidationstringThe regular expression used to validate the custom field.
ValidationMessagestringThe message to display when the validation fails.
ValuestringThe value the user input.

FieldType

NAMETYPEDESCRIPTION
Transaction0The Field is a Transaction Data Field
Customer1The 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,
}