@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 2.97 kB
TypeScript
/**
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PtsV2PaymentsPost201Response2ProcessorInformation
*/
export interface PtsV2PaymentsPost201Response2ProcessorInformation {
/**
* Network transaction identifier (TID). You can use this value to identify a specific transaction when you are discussing the transaction with your processor. Not all processors provide this value. Returned by the authorization service. #### PIN debit Transaction identifier generated by the processor. Returned by PIN debit credit. #### GPX Processor transaction ID. #### Cielo For Cielo, this value is the non-sequential unit (NSU) and is supported for all transactions. The value is generated by Cielo or the issuing bank. #### Comercio Latino For Comercio Latino, this value is the proof of sale or non-sequential unit (NSU) number generated by the acquirers Cielo and Rede, or the issuing bank. #### CyberSource through VisaNet and GPN For details about this value for CyberSource through VisaNet and GPN, see \"Network Transaction Identifiers\" in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) #### Moneris This value identifies the transaction on a host system. It contains the following information: - Terminal used to process the transaction - Shift during which the transaction took place - Batch number - Transaction number within the batch You must store this value. If you give the customer a receipt, display this value on the receipt. **Example** For the value 66012345001069003: - Terminal ID = 66012345 - Shift number = 001 - Batch number = 069 - Transaction number = 003
* @type {string}
* @memberof PtsV2PaymentsPost201Response2ProcessorInformation
*/
transactionId?: string;
/**
* Direct the customer to this URL to complete the payment.
* @type {string}
* @memberof PtsV2PaymentsPost201Response2ProcessorInformation
*/
paymentUrl?: string;
/**
* This field might contain information about a decline. This field is supported only for **CyberSource through VisaNet**.
* @type {string}
* @memberof PtsV2PaymentsPost201Response2ProcessorInformation
*/
responseDetails?: string;
/**
* Payment gateway/processor assigned session token.
* @type {string}
* @memberof PtsV2PaymentsPost201Response2ProcessorInformation
*/
token?: string;
/**
* Transaction status from the processor.
* @type {string}
* @memberof PtsV2PaymentsPost201Response2ProcessorInformation
*/
responseCode?: string;
}