/**
 * 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 { PtsV2PaymentsOrderPost201ResponseProcessorInformationSellerProtection } from './pts-v2-payments-order-post201-response-processor-information-seller-protection';
/**
 *
 * @export
 * @interface PtsV2PaymentsOrderPost201ResponseProcessorInformation
 */
export interface PtsV2PaymentsOrderPost201ResponseProcessorInformation {
    /**
     *
     * @type {PtsV2PaymentsOrderPost201ResponseProcessorInformationSellerProtection}
     * @memberof PtsV2PaymentsOrderPost201ResponseProcessorInformation
     */
    sellerProtection?: PtsV2PaymentsOrderPost201ResponseProcessorInformationSellerProtection;
    /**
     *
     * @type {PtsV2PaymentsOrderPost201ResponseProcessorInformationAvs}
     * @memberof PtsV2PaymentsOrderPost201ResponseProcessorInformation
     */
    avs?: PtsV2PaymentsOrderPost201ResponseProcessorInformationAvs;
    /**
     * 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 PtsV2PaymentsOrderPost201ResponseProcessorInformation
     */
    transactionId?: string;
    /**
     * This field might contain information about a decline. This field is supported only for **CyberSource through VisaNet**.
     * @type {string}
     * @memberof PtsV2PaymentsOrderPost201ResponseProcessorInformation
     */
    responseDetails?: string;
}
