@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 2.02 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 PtsV2PayoutsPost201ResponseProcessorInformation
*/
export interface PtsV2PayoutsPost201ResponseProcessorInformation {
/**
* Issuer-generated approval code for the transaction.
* @type {string}
* @memberof PtsV2PayoutsPost201ResponseProcessorInformation
*/
approvalCode?: string;
/**
* Transaction status from the processor.
* @type {string}
* @memberof PtsV2PayoutsPost201ResponseProcessorInformation
*/
responseCode?: string;
/**
* Network transaction identifier (TID). This value can be used to identify a specific transaction when you are discussing the transaction with your processor.
* @type {string}
* @memberof PtsV2PayoutsPost201ResponseProcessorInformation
*/
transactionId?: string;
/**
* This field is returned only for **American Express Direct** and **CyberSource through VisaNet**. Returned by authorization and incremental authorization services. #### American Express Direct System trace audit number (STAN). This value identifies the transaction and is useful when investigating a chargeback dispute. #### CyberSource through VisaNet System trace number that must be printed on the customer's receipt.
* @type {string}
* @memberof PtsV2PayoutsPost201ResponseProcessorInformation
*/
systemTraceAuditNumber?: string;
/**
* Used by Visa only and contains the response source/reason code that identifies the source of the response decision.
* @type {string}
* @memberof PtsV2PayoutsPost201ResponseProcessorInformation
*/
responseCodeSource?: string;
}