@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
56 lines (55 loc) • 2.75 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.
*/
import { Riskv1decisionsClientReferenceInformationPartner } from './riskv1decisions-client-reference-information-partner';
/**
*
* @export
* @interface Rbsv1subscriptionsClientReferenceInformation
*/
export interface Rbsv1subscriptionsClientReferenceInformation {
/**
* Merchant-generated order reference or tracking number. It is recommended that you send a unique value for each transaction so that you can perform meaningful searches for the transaction. #### Used by **Authorization** Required field. #### PIN Debit Requests for PIN debit reversals need to use the same merchant reference number that was used in the transaction that is being reversed. Required field for all PIN Debit requests (purchase, credit, and reversal). #### FDC Nashville Global Certain circumstances can cause the processor to truncate this value to 15 or 17 characters for Level II and Level III processing, which can cause a discrepancy between the value you submit and the value included in some processor reports.
* @type {string}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
code?: string;
/**
* Brief description of the order or any comment you wish to add to the order.
* @type {string}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
comments?: string;
/**
*
* @type {Riskv1decisionsClientReferenceInformationPartner}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
partner?: Riskv1decisionsClientReferenceInformationPartner;
/**
* The name of the Connection Method client (such as Virtual Terminal or SOAP Toolkit API) that the merchant uses to send a transaction request to CyberSource.
* @type {string}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
applicationName?: string;
/**
* Version of the CyberSource application or integration used for a transaction.
* @type {string}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
applicationVersion?: string;
/**
* The entity that is responsible for running the transaction and submitting the processing request to CyberSource. This could be a person, a system, or a connection method.
* @type {string}
* @memberof Rbsv1subscriptionsClientReferenceInformation
*/
applicationUser?: string;
}