@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
69 lines (68 loc) • 5.44 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 { Ptsv1pushfundstransferProcessingInformationPayoutsOptions } from './ptsv1pushfundstransfer-processing-information-payouts-options';
import { Ptsv1pushfundstransferProcessingInformationRecurringOptions } from './ptsv1pushfundstransfer-processing-information-recurring-options';
/**
*
* @export
* @interface Ptsv1pushfundstransferProcessingInformation
*/
export interface Ptsv1pushfundstransferProcessingInformation {
/**
* Payouts transaction type. Required for Mastercard Send. Valid Values- Visa Platform Connect: - `AA`: Account to account. - `CP`: Card bill payment - `FD`: Funds disbursement (general) - `GD`: Government disbursement - `MD`: Merchant disbursement (acquirers or aggregators settling to merchants). - `PP`: Person to person. - `TU`: Top-up for enhanced prepaid loads. Mastercard Send: - `BB`: Business to business. - `BD`: Business Disbursement - `CP`: Card bill payment - `GD`: Government disbursement - `MD`: Merchant disbursement (acquirers or aggregators settling to merchants). - `OG`: Online gambling payout. Chase Paymentech Solutions: - `AA`: Account to account. - `FD`: Funds disbursement (general) - `MD`: Merchant disbursement (acquirers or aggregators settling to merchants). - `PP`: Person to person. FDC Compass: - `BB`: Business to business. - `BI`: Bank-initiated money transfer. - `FD`: Funds disbursement (general) - `GD`: Government disbursement - `GP`: Gambling Payment - `LO`: Loyalty Offers - `MD`: Merchant disbursement (acquirers or aggregators settling to merchants). - `MI`: Merchant initated money transfer - `OG`: Online gambling payout. - `PD`: Payroll pension disbursement. - `PP`: Person to person. - `WT`: Wallet transfer.
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
businessApplicationId?: string;
/**
* Type of transaction. Value for an OCT transaction: internet For details, see the e_commerce_indicator field description in Payouts Using the SCMP API.
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
commerceIndicator: string;
/**
* Visa Platform Connect This field is optionally used by Push Payments Gateway participants (merchants and acquirers) to get the attributes for specified networks only. The networks specified in this field must be a subset of the information provided during program enrollment. Refer to Sharing Group Code/Network Routing Order. Note: Supported only in US for domestic transactions involving Push Payments Gateway Service. VisaNet checks to determine if there are issuer routing preferences for any of the networks specified by the network routing order. If an issuer preference exists for one of the specified debit networks, VisaNet makes a routing selection based on the issuer's preference. If an issuer preference exists for more than one of the specified debit networks, or if no issuer preference exists, VisaNet makes a selection based on the acquirer's routing priorities. For details, see the network_order field description in BIN Lookup Service Using the SCMP API.
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
networkRoutingOrder?: string;
/**
*
* @type {Ptsv1pushfundstransferProcessingInformationPayoutsOptions}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
payoutsOptions?: Ptsv1pushfundstransferProcessingInformationPayoutsOptions;
/**
* This will send purpose of funds code for original credit transactions (OCTs). Visa Platform Connect (VPC) This will send purpose of transaction code for original credit transactions (OCTs). Purpose of Payment codes are defined by the recipient issuer's country and vary by country. Mastercard Send: - `00`: Family Support - `01`: Regular Labor Transfers (expatriates), - `02`: Travel & Tourism - `03`: Education - `04`: Hospitalization & Medical Treatment, - `05`: Emergency Need - `06`: Savings - `07`: Gifts - `08`: Other - `09`: Salary - `10`: Crowd lending - `11`: Crypto currency - `12`: Refund to original card - `13`: Refund to new card
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
purposeOfPayment?: string;
/**
* Please check with Cybersource customer support to see if your merchant account is configured correctly so you can include this field in your request. For Payouts: max length for FDCCompass is String (22).
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
reconciliationId?: string;
/**
*
* @type {Ptsv1pushfundstransferProcessingInformationRecurringOptions}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
recurringOptions?: Ptsv1pushfundstransferProcessingInformationRecurringOptions;
/**
* Transaction reason code. This field applies only to Visa Platform Connect
* @type {string}
* @memberof Ptsv1pushfundstransferProcessingInformation
*/
transactionReason?: string;
}