@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
74 lines (73 loc) • 4.27 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 { Ptsv2paymentsClientReferenceInformationPartner } from './ptsv2payments-client-reference-information-partner';
/**
*
* @export
* @interface Ptsv2billingagreementsClientReferenceInformation
*/
export interface Ptsv2billingagreementsClientReferenceInformation {
/**
* 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 #### SEPA/BACS Required for mandates services #### Paypal Required for billing agreements **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 Ptsv2billingagreementsClientReferenceInformation
*/
code?: string;
/**
* Reference number for the transaction. Depending on how your Cybersource account is configured, this value could either be provided in the API request or generated by CyberSource. The actual value used in the request to the processor is provided back to you by Cybersource in the response.
* @type {string}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
reconciliationId?: string;
/**
* Used to resume a transaction that was paused for an order modification rule to allow for payer authentication to complete. To resume and continue with the authorization/decision service flow, call the services and include the request id from the prior decision call.
* @type {string}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
pausedRequestId?: string;
/**
* Identifier that you assign to the transaction. Normally generated by a client server to identify a unique API request. **Note** Use this field only if you want to support merchant-initiated reversal and void operations. #### Used by **Authorization, Authorization Reversal, Capture, Credit, and Void** Optional field. #### PIN Debit For a PIN debit reversal, your request must include a request ID or a merchant transaction identifier. Optional field for PIN debit purchase or credit requests.
* @type {string}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
transactionId?: string;
/**
* Comments
* @type {string}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
comments?: string;
/**
*
* @type {Ptsv2paymentsClientReferenceInformationPartner}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
partner?: Ptsv2paymentsClientReferenceInformationPartner;
/**
* 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 Ptsv2billingagreementsClientReferenceInformation
*/
applicationName?: string;
/**
* Version of the CyberSource application or integration used for a transaction.
* @type {string}
* @memberof Ptsv2billingagreementsClientReferenceInformation
*/
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 Ptsv2billingagreementsClientReferenceInformation
*/
applicationUser?: string;
}