Class AddItemResponse
Results from a AddItemRequest.
Properties
NAME | TYPE | DESCRIPTION |
---|---|---|
RequestId | 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 | string | Can be Error or Resource code depending on type of result. |
ResultMessage | string | Message regarding details of the Result. |
ValidationResults | ValidationResult[] | Array of ValidationResult objects containing messages regarding input validation. |
Credentials | TokenCredentials | Credentials for subsequent web service requests. |
Item | Item | The information related to the newly added item. |
Item
NAME | TYPE | DESCRIPTION |
---|---|---|
Amount | decimal | The amount in DECIMAL format of an individual check item. |
BatchReference | string | The unique value assigned to each batch which can be used to find details about the batch. |
Customer | Customer | Object representing a customer; i.e. Name, Address, City, etc.. |
DataFields | DataField[] | The optional, or required, additonal information saved along with the item. This depends upon the GetSettings.ShowDataEntry and if the sub items are REQUIRED. |
Events | Event[] | Events that were performed on an idividual check item. |
IQAStatus | string | Image quality status. |
ItemReference | string | The unique value assigned to each item which can be used to get more details about this item. |
ProcessingStatus | string | Once a transaction is created, this will have a value and contain the processing status code. |
ProcessingStatusDescription | string | Once a transaction is created, this will have a value and will contain the processing status to be displayed. |
Status | string | The status code of the item. |
StatusDescription | string | The status description to be displayed. |
TransactionReferenceNumber | string | A unique value assigned to each transaction in the system. |
Examples
{
"__type":"AddItemResponse:#JackHenry.Eps.Mobile.RDC",
"Item":
{
"__type":"Item:#JackHenry.Eps.Mobile.RDC",
"ItemReference":"String Content",
"BatchReference":"String Content",
"TransactionReferenceNumber":"String Content",
"Status":"String Content",
"StatusDescription":"String Content",
"ProcessingStatus":"String Content",
"ProcessingStatusDescription":"String Content",
"Amount":12678967.54,
"IQAStatus":"String Content",
"Events":
[
],
"DataFields":
[
{
"__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,
}
],
"Customer":
{
"__type":"Customer:#JackHenry.Eps.Mobile.RDC",
"HomeBankingId":"String Content",
"FirstName":"String Content",
"LastName":"String Content",
"AddressLine1":"String Content",
"AddressLine2":"String Content",
"City":"String Content",
"State":"String Content",
"PostalCode":"String Content",
"Country":"String Content",
"EmailAddress":"String Content",
"CustomerReference":"String Content",
"DaytimePhone":"String Content",
"DaytimePhoneExt":"String Content",
"EveningPhone":"String Content",
"EveningPhoneExt":"String Content",
"SSNFedTaxId":"String Content",
"Fax":"String Content",
"CustomerData1":"String Content",
"CustomerData2":"String Content",
"CustomerData3":"String Content",
"IsCompany":true,
"LocationReference":"String Content",
"DLNumber":"String Content",
"DLState":"String Content",
"CustomerType":
"Relationship":
}
}
}
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 |