UNPKG

@paciolan/cybersource-sdk

Version:
57 lines (56 loc) 3.56 kB
/** * 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. */ import { PtsV2PaymentsOrderPost201ResponseProcessorInformationAvs } from './pts-v2-payments-order-post201-response-processor-information-avs'; import { PtsV2PaymentsPost201ResponseProcessorInformationSellerProtection } from './pts-v2-payments-post201-response-processor-information-seller-protection'; /** * * @export * @interface PtsV2PaymentsPost201Response1ProcessorInformation */ export interface PtsV2PaymentsPost201Response1ProcessorInformation { /** * 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 PtsV2PaymentsPost201Response1ProcessorInformation */ transactionId?: string; /** * The description for this field is not available. * @type {string} * @memberof PtsV2PaymentsPost201Response1ProcessorInformation */ tradeNumber?: string; /** * This field is set to the value of failure reason returned by the processor. * @type {string} * @memberof PtsV2PaymentsPost201Response1ProcessorInformation */ rawResponse?: string; /** * This field is set to the value of response code returned by the processor. * @type {string} * @memberof PtsV2PaymentsPost201Response1ProcessorInformation */ responseCode?: string; /** * * @type {PtsV2PaymentsPost201ResponseProcessorInformationSellerProtection} * @memberof PtsV2PaymentsPost201Response1ProcessorInformation */ sellerProtection?: PtsV2PaymentsPost201ResponseProcessorInformationSellerProtection; /** * * @type {PtsV2PaymentsOrderPost201ResponseProcessorInformationAvs} * @memberof PtsV2PaymentsPost201Response1ProcessorInformation */ avs?: PtsV2PaymentsOrderPost201ResponseProcessorInformationAvs; }