Reporting fields that should be sent with one-time use card requests so that they show up in the bank reports. Author: Kurt Stauffer Date: 4/6/17 Time: 1:19 PM
| name | data type | constraints | description |
|---|---|---|---|
| fieldName | string | required | The field name that the value should be entered into on the final report. |
| template | string | A code that should match to a property in the itinerary object, to describe what property (or properties) should be entered onto the report. | |
| fieldType | string | The type that the value is, to help determine the format that should be used to display it on the report. | |
| required | boolean | required boolean | Whether or not the value is required to be populated to successfully create a one-time use card. |
Properties inherited from BaseHibernateEntity |
|||
| id | number | The unique internal ID of the object. | |
| version | number | For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions. | |
Properties inherited from BaseEntity |
|||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. | |
Example
{
"fieldName" : "...",
"template" : "...",
"fieldType" : "...",
"required" : true,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}