
Model.Ptsv2paymentsProcessingInformation Maven / Gradle / Ivy
/*
* 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.
*/
package Model;
import java.util.Objects;
import java.util.Arrays;
import Model.Ptsv2paymentsProcessingInformationAuthorizationOptions;
import Model.Ptsv2paymentsProcessingInformationBankTransferOptions;
import Model.Ptsv2paymentsProcessingInformationCaptureOptions;
import Model.Ptsv2paymentsProcessingInformationElectronicBenefitsTransfer;
import Model.Ptsv2paymentsProcessingInformationJapanPaymentOptions;
import Model.Ptsv2paymentsProcessingInformationLoanOptions;
import Model.Ptsv2paymentsProcessingInformationPurchaseOptions;
import Model.Ptsv2paymentsProcessingInformationRecurringOptions;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Ptsv2paymentsProcessingInformation
*/
public class Ptsv2paymentsProcessingInformation {
@SerializedName("actionList")
private List actionList = null;
@SerializedName("enableEscrowOption")
private Boolean enableEscrowOption = null;
@SerializedName("actionTokenTypes")
private List actionTokenTypes = null;
@SerializedName("binSource")
private String binSource = null;
@SerializedName("capture")
private Boolean capture = false;
@SerializedName("processorId")
private String processorId = null;
@SerializedName("businessApplicationId")
private String businessApplicationId = null;
@SerializedName("commerceIndicator")
private String commerceIndicator = null;
@SerializedName("commerceIndicatorLabel")
private String commerceIndicatorLabel = null;
@SerializedName("paymentSolution")
private String paymentSolution = null;
@SerializedName("reconciliationId")
private String reconciliationId = null;
@SerializedName("linkId")
private String linkId = null;
@SerializedName("purchaseLevel")
private String purchaseLevel = null;
@SerializedName("transactionTimeout")
private Integer transactionTimeout = null;
@SerializedName("intentsId")
private String intentsId = null;
@SerializedName("reportGroup")
private String reportGroup = null;
@SerializedName("visaCheckoutId")
private String visaCheckoutId = null;
@SerializedName("industryDataType")
private String industryDataType = null;
@SerializedName("authorizationOptions")
private Ptsv2paymentsProcessingInformationAuthorizationOptions authorizationOptions = null;
@SerializedName("captureOptions")
private Ptsv2paymentsProcessingInformationCaptureOptions captureOptions = null;
@SerializedName("recurringOptions")
private Ptsv2paymentsProcessingInformationRecurringOptions recurringOptions = null;
@SerializedName("bankTransferOptions")
private Ptsv2paymentsProcessingInformationBankTransferOptions bankTransferOptions = null;
@SerializedName("purchaseOptions")
private Ptsv2paymentsProcessingInformationPurchaseOptions purchaseOptions = null;
@SerializedName("electronicBenefitsTransfer")
private Ptsv2paymentsProcessingInformationElectronicBenefitsTransfer electronicBenefitsTransfer = null;
@SerializedName("loanOptions")
private Ptsv2paymentsProcessingInformationLoanOptions loanOptions = null;
@SerializedName("walletType")
private String walletType = null;
@SerializedName("nationalNetDomesticData")
private String nationalNetDomesticData = null;
@SerializedName("japanPaymentOptions")
private Ptsv2paymentsProcessingInformationJapanPaymentOptions japanPaymentOptions = null;
@SerializedName("mobileRemotePaymentType")
private String mobileRemotePaymentType = null;
@SerializedName("extendedCreditTotalCount")
private String extendedCreditTotalCount = null;
@SerializedName("networkRoutingOrder")
private String networkRoutingOrder = null;
@SerializedName("payByPointsIndicator")
private Boolean payByPointsIndicator = null;
@SerializedName("timeout")
private Integer timeout = null;
@SerializedName("isReturnAuthRecordEnabled")
private Boolean isReturnAuthRecordEnabled = null;
@SerializedName("networkPartnerId")
private String networkPartnerId = null;
@SerializedName("paymentType")
private String paymentType = null;
@SerializedName("enablerId")
private String enablerId = null;
@SerializedName("processingInstruction")
private String processingInstruction = null;
@SerializedName("transactionTypeIndicator")
private String transactionTypeIndicator = null;
@SerializedName("purposeOfPayment")
private String purposeOfPayment = null;
@SerializedName("languageCode")
private String languageCode = null;
@SerializedName("originalPaymentId")
private String originalPaymentId = null;
public Ptsv2paymentsProcessingInformation actionList(List actionList) {
this.actionList = actionList;
return this;
}
public Ptsv2paymentsProcessingInformation addActionListItem(String actionListItem) {
if (this.actionList == null) {
this.actionList = new ArrayList();
}
this.actionList.add(actionListItem);
return this;
}
/**
* Array of actions (one or more) to be included in the payment to invoke bundled services along with payment. Possible values are one or more of follows: - `DECISION_SKIP`: Use this when you want to skip Decision Manager service(s). - `TOKEN_CREATE`: Use this when you want to create a token from the card/bank data in your payment request. - `CONSUMER_AUTHENTICATION`: Use this when you want to check if a card is enrolled in Payer Authentication along with your payment request. - `VALIDATE_CONSUMER_AUTHENTICATION`: Use this after you acquire a Payer Authentication result that needs to be included for your payment request. - `AP_INITIATE`: Use this when Alternative Payment Initiate service is requested. - `WATCHLIST_SCREENING` : Use this when you want to call Watchlist Screening service. - `AP_SALE` : Use this when Alternative Payment Sale service is requested. - `AP_AUTH` : Use this when Alternative Payment Authorize service is requested. - `AP_REAUTH` : Use this when Alternative Payment Reauthorize service is requested.
* @return actionList
**/
@ApiModelProperty(value = "Array of actions (one or more) to be included in the payment to invoke bundled services along with payment. Possible values are one or more of follows: - `DECISION_SKIP`: Use this when you want to skip Decision Manager service(s). - `TOKEN_CREATE`: Use this when you want to create a token from the card/bank data in your payment request. - `CONSUMER_AUTHENTICATION`: Use this when you want to check if a card is enrolled in Payer Authentication along with your payment request. - `VALIDATE_CONSUMER_AUTHENTICATION`: Use this after you acquire a Payer Authentication result that needs to be included for your payment request. - `AP_INITIATE`: Use this when Alternative Payment Initiate service is requested. - `WATCHLIST_SCREENING` : Use this when you want to call Watchlist Screening service. - `AP_SALE` : Use this when Alternative Payment Sale service is requested. - `AP_AUTH` : Use this when Alternative Payment Authorize service is requested. - `AP_REAUTH` : Use this when Alternative Payment Reauthorize service is requested. ")
public List getActionList() {
return actionList;
}
public void setActionList(List actionList) {
this.actionList = actionList;
}
public Ptsv2paymentsProcessingInformation enableEscrowOption(Boolean enableEscrowOption) {
this.enableEscrowOption = enableEscrowOption;
return this;
}
/**
* Indicates whether to use the customer's escrow agreement. Possible values: - `true`: yes, use the customer's escrow agreement. - `false`: no, do not use the customer's escrow agreement.
* @return enableEscrowOption
**/
@ApiModelProperty(value = "Indicates whether to use the customer's escrow agreement. Possible values: - `true`: yes, use the customer's escrow agreement. - `false`: no, do not use the customer's escrow agreement. ")
public Boolean EnableEscrowOption() {
return enableEscrowOption;
}
public void setEnableEscrowOption(Boolean enableEscrowOption) {
this.enableEscrowOption = enableEscrowOption;
}
public Ptsv2paymentsProcessingInformation actionTokenTypes(List actionTokenTypes) {
this.actionTokenTypes = actionTokenTypes;
return this;
}
public Ptsv2paymentsProcessingInformation addActionTokenTypesItem(String actionTokenTypesItem) {
if (this.actionTokenTypes == null) {
this.actionTokenTypes = new ArrayList();
}
this.actionTokenTypes.add(actionTokenTypesItem);
return this;
}
/**
* CyberSource tokens types you are performing a create on. If not supplied the default token type for the merchants token vault will be used. Valid values: - customer - paymentInstrument - instrumentIdentifier - shippingAddress
* @return actionTokenTypes
**/
@ApiModelProperty(value = "CyberSource tokens types you are performing a create on. If not supplied the default token type for the merchants token vault will be used. Valid values: - customer - paymentInstrument - instrumentIdentifier - shippingAddress ")
public List getActionTokenTypes() {
return actionTokenTypes;
}
public void setActionTokenTypes(List actionTokenTypes) {
this.actionTokenTypes = actionTokenTypes;
}
public Ptsv2paymentsProcessingInformation binSource(String binSource) {
this.binSource = binSource;
return this;
}
/**
* Bin Source File Identifier. Possible values: - itmx - rupay
* @return binSource
**/
@ApiModelProperty(value = "Bin Source File Identifier. Possible values: - itmx - rupay ")
public String getBinSource() {
return binSource;
}
public void setBinSource(String binSource) {
this.binSource = binSource;
}
public Ptsv2paymentsProcessingInformation capture(Boolean capture) {
this.capture = capture;
return this;
}
/**
* Indicates whether to also include a capture in the submitted authorization request or not. Possible values: - `true`: Include a capture with an authorization request. - `false`: (default) Do not include a capture with an authorization request. #### Used by **Authorization and Capture** Optional field.
* @return capture
**/
@ApiModelProperty(value = "Indicates whether to also include a capture in the submitted authorization request or not. Possible values: - `true`: Include a capture with an authorization request. - `false`: (default) Do not include a capture with an authorization request. #### Used by **Authorization and Capture** Optional field. ")
public Boolean Capture() {
return capture;
}
public void setCapture(Boolean capture) {
this.capture = capture;
}
public Ptsv2paymentsProcessingInformation processorId(String processorId) {
this.processorId = processorId;
return this;
}
/**
* Value that identifies the processor/acquirer to use for the transaction. This value is supported only for **CyberSource through VisaNet**. Contact CyberSource Customer Support to get the value for this field.
* @return processorId
**/
@ApiModelProperty(value = "Value that identifies the processor/acquirer to use for the transaction. This value is supported only for **CyberSource through VisaNet**. Contact CyberSource Customer Support to get the value for this field. ")
public String getProcessorId() {
return processorId;
}
public void setProcessorId(String processorId) {
this.processorId = processorId;
}
public Ptsv2paymentsProcessingInformation businessApplicationId(String businessApplicationId) {
this.businessApplicationId = businessApplicationId;
return this;
}
/**
* Required for AFT and OCT transactions. Given below is a list of all the BAI values available. However, the processors may support only few specific BAI values. - AA : Account-to-account - BB : Supplier Payments - BI : Bank-Initiated P2P Money Transfer - BP : Non-Card Bill Pay/Bill Pay - CD : Cash Deposit - CP : Credit card Bill Payment - FD : Funds disbursement - FT : Funds transfer - GD : Government Disbursement - GP : Gambling payout (non-online gambling) - LO : Loyalty credits and rebates - MD : Merchant Settlement - OG : Online Gambling Payout - PD : Payroll and pension disbursement - PP : Person-to-Person or Peer-to-Peer - TU : Top up, prepaid load - WT : Digital wallet
* @return businessApplicationId
**/
@ApiModelProperty(value = "Required for AFT and OCT transactions. Given below is a list of all the BAI values available. However, the processors may support only few specific BAI values. - AA : Account-to-account - BB : Supplier Payments - BI : Bank-Initiated P2P Money Transfer - BP : Non-Card Bill Pay/Bill Pay - CD : Cash Deposit - CP : Credit card Bill Payment - FD : Funds disbursement - FT : Funds transfer - GD : Government Disbursement - GP : Gambling payout (non-online gambling) - LO : Loyalty credits and rebates - MD : Merchant Settlement - OG : Online Gambling Payout - PD : Payroll and pension disbursement - PP : Person-to-Person or Peer-to-Peer - TU : Top up, prepaid load - WT : Digital wallet ")
public String getBusinessApplicationId() {
return businessApplicationId;
}
public void setBusinessApplicationId(String businessApplicationId) {
this.businessApplicationId = businessApplicationId;
}
public Ptsv2paymentsProcessingInformation commerceIndicator(String commerceIndicator) {
this.commerceIndicator = commerceIndicator;
return this;
}
/**
* Type of transaction. Some payment card companies use this information when determining discount rates. #### Used by **Authorization** Required payer authentication transactions; otherwise, optional. **Credit** Required for standalone credits on Chase Paymentech solutions; otherwise, optional. The list of valid values in this field depends on your processor. #### Ingenico ePayments When you omit this field for Ingenico ePayments, the processor uses the default transaction type they have on file for you instead of the default value #### Card Present You must set this field to `retail`. This field is required for a card-present transaction. Note that this should ONLY be used when the cardholder and card are present at the time of the transaction. For all keyed transactions originated from a POS terminal where the cardholder and card are not present, commerceIndicator should be submitted as \"moto\"
* @return commerceIndicator
**/
@ApiModelProperty(value = "Type of transaction. Some payment card companies use this information when determining discount rates. #### Used by **Authorization** Required payer authentication transactions; otherwise, optional. **Credit** Required for standalone credits on Chase Paymentech solutions; otherwise, optional. The list of valid values in this field depends on your processor. #### Ingenico ePayments When you omit this field for Ingenico ePayments, the processor uses the default transaction type they have on file for you instead of the default value #### Card Present You must set this field to `retail`. This field is required for a card-present transaction. Note that this should ONLY be used when the cardholder and card are present at the time of the transaction. For all keyed transactions originated from a POS terminal where the cardholder and card are not present, commerceIndicator should be submitted as \"moto\" ")
public String getCommerceIndicator() {
return commerceIndicator;
}
public void setCommerceIndicator(String commerceIndicator) {
this.commerceIndicator = commerceIndicator;
}
public Ptsv2paymentsProcessingInformation commerceIndicatorLabel(String commerceIndicatorLabel) {
this.commerceIndicatorLabel = commerceIndicatorLabel;
return this;
}
/**
* Type of transaction. Some payment card companies use this information when determining discount rates. #### Used by **Authorization** Required payer authentication transactions; otherwise, optional. **Credit** Required for standalone credits on Chase Paymentech solutions; otherwise, optional. The list of valid values in this field depends on your processor. #### Ingenico ePayments When you omit this field for Ingenico ePayments, the processor uses the default transaction type they have on file for you instead of the default value #### Card Present You must set this field to `retail`. This field is required for a card-present transaction. Note that this should ONLY be used when the cardholder and card are present at the time of the transaction. For all keyed transactions originated from a POS terminal where the cardholder and card are not present, commerceIndicator should be submitted as `moto`
* @return commerceIndicatorLabel
**/
@ApiModelProperty(value = "Type of transaction. Some payment card companies use this information when determining discount rates. #### Used by **Authorization** Required payer authentication transactions; otherwise, optional. **Credit** Required for standalone credits on Chase Paymentech solutions; otherwise, optional. The list of valid values in this field depends on your processor. #### Ingenico ePayments When you omit this field for Ingenico ePayments, the processor uses the default transaction type they have on file for you instead of the default value #### Card Present You must set this field to `retail`. This field is required for a card-present transaction. Note that this should ONLY be used when the cardholder and card are present at the time of the transaction. For all keyed transactions originated from a POS terminal where the cardholder and card are not present, commerceIndicator should be submitted as `moto` ")
public String getCommerceIndicatorLabel() {
return commerceIndicatorLabel;
}
public void setCommerceIndicatorLabel(String commerceIndicatorLabel) {
this.commerceIndicatorLabel = commerceIndicatorLabel;
}
public Ptsv2paymentsProcessingInformation paymentSolution(String paymentSolution) {
this.paymentSolution = paymentSolution;
return this;
}
/**
* Type of digital payment solution for the transaction. Possible Values: - `visacheckout`: Visa Checkout. This value is required for Visa Checkout transactions. For details, see `payment_solution` field description in [Visa Checkout Using the REST API.](https://developer.cybersource.com/content/dam/docs/cybs/en-us/apifields/reference/all/rest/api-fields.pdf) - `001`: Apple Pay. - `004`: Cybersource In-App Solution. - `005`: Masterpass. This value is required for Masterpass transactions on OmniPay Direct. - `006`: Android Pay. - `007`: Chase Pay. - `008`: Samsung Pay. - `012`: Google Pay. - `013`: Cybersource P2PE Decryption - `014`: Mastercard credential on file (COF) payment network token. Returned in authorizations that use a payment network token associated with a TMS token. - `015`: Visa credential on file (COF) payment network token. Returned in authorizations that use a payment network token associated with a TMS token. - `027`: Click to Pay.
* @return paymentSolution
**/
@ApiModelProperty(value = "Type of digital payment solution for the transaction. Possible Values: - `visacheckout`: Visa Checkout. This value is required for Visa Checkout transactions. For details, see `payment_solution` field description in [Visa Checkout Using the REST API.](https://developer.cybersource.com/content/dam/docs/cybs/en-us/apifields/reference/all/rest/api-fields.pdf) - `001`: Apple Pay. - `004`: Cybersource In-App Solution. - `005`: Masterpass. This value is required for Masterpass transactions on OmniPay Direct. - `006`: Android Pay. - `007`: Chase Pay. - `008`: Samsung Pay. - `012`: Google Pay. - `013`: Cybersource P2PE Decryption - `014`: Mastercard credential on file (COF) payment network token. Returned in authorizations that use a payment network token associated with a TMS token. - `015`: Visa credential on file (COF) payment network token. Returned in authorizations that use a payment network token associated with a TMS token. - `027`: Click to Pay. ")
public String getPaymentSolution() {
return paymentSolution;
}
public void setPaymentSolution(String paymentSolution) {
this.paymentSolution = paymentSolution;
}
public Ptsv2paymentsProcessingInformation reconciliationId(String reconciliationId) {
this.reconciliationId = reconciliationId;
return this;
}
/**
* 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).
* @return reconciliationId
**/
@ApiModelProperty(value = "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). ")
public String getReconciliationId() {
return reconciliationId;
}
public void setReconciliationId(String reconciliationId) {
this.reconciliationId = reconciliationId;
}
public Ptsv2paymentsProcessingInformation linkId(String linkId) {
this.linkId = linkId;
return this;
}
/**
* Value that links the current authorization request to the original authorization request. Set this value to the ID that was returned in the reply message from the original authorization request. This value is used for: - Partial authorizations - Split shipments
* @return linkId
**/
@ApiModelProperty(value = "Value that links the current authorization request to the original authorization request. Set this value to the ID that was returned in the reply message from the original authorization request. This value is used for: - Partial authorizations - Split shipments ")
public String getLinkId() {
return linkId;
}
public void setLinkId(String linkId) {
this.linkId = linkId;
}
public Ptsv2paymentsProcessingInformation purchaseLevel(String purchaseLevel) {
this.purchaseLevel = purchaseLevel;
return this;
}
/**
* Set this field to 3 to indicate that the request includes Level III data.
* @return purchaseLevel
**/
@ApiModelProperty(value = "Set this field to 3 to indicate that the request includes Level III data.")
public String getPurchaseLevel() {
return purchaseLevel;
}
public void setPurchaseLevel(String purchaseLevel) {
this.purchaseLevel = purchaseLevel;
}
public Ptsv2paymentsProcessingInformation transactionTimeout(Integer transactionTimeout) {
this.transactionTimeout = transactionTimeout;
return this;
}
/**
* The time-out limit in seconds for the transaction. The time-out limit starts when the customer is directed to the merchant URL that is included in the sale service response. The maximum value is 99999 (about 27 hours). When the transaction times out, the payment system changes the status to abandoned.
* maximum: 99999
* @return transactionTimeout
**/
@ApiModelProperty(value = "The time-out limit in seconds for the transaction. The time-out limit starts when the customer is directed to the merchant URL that is included in the sale service response. The maximum value is 99999 (about 27 hours). When the transaction times out, the payment system changes the status to abandoned.")
public Integer getTransactionTimeout() {
return transactionTimeout;
}
public void setTransactionTimeout(Integer transactionTimeout) {
this.transactionTimeout = transactionTimeout;
}
public Ptsv2paymentsProcessingInformation intentsId(String intentsId) {
this.intentsId = intentsId;
return this;
}
/**
* Set to the value of the requestID field returned in the order service response.
* @return intentsId
**/
@ApiModelProperty(value = "Set to the value of the requestID field returned in the order service response.")
public String getIntentsId() {
return intentsId;
}
public void setIntentsId(String intentsId) {
this.intentsId = intentsId;
}
public Ptsv2paymentsProcessingInformation reportGroup(String reportGroup) {
this.reportGroup = reportGroup;
return this;
}
/**
* Attribute that lets you define custom grouping for your processor reports. This field is supported only for **Worldpay VAP**.
* @return reportGroup
**/
@ApiModelProperty(value = "Attribute that lets you define custom grouping for your processor reports. This field is supported only for **Worldpay VAP**. ")
public String getReportGroup() {
return reportGroup;
}
public void setReportGroup(String reportGroup) {
this.reportGroup = reportGroup;
}
public Ptsv2paymentsProcessingInformation visaCheckoutId(String visaCheckoutId) {
this.visaCheckoutId = visaCheckoutId;
return this;
}
/**
* Identifier for the **Visa Checkout** order. Visa Checkout provides a unique order ID for every transaction in the Visa Checkout **callID** field.
* @return visaCheckoutId
**/
@ApiModelProperty(value = "Identifier for the **Visa Checkout** order. Visa Checkout provides a unique order ID for every transaction in the Visa Checkout **callID** field. ")
public String getVisaCheckoutId() {
return visaCheckoutId;
}
public void setVisaCheckoutId(String visaCheckoutId) {
this.visaCheckoutId = visaCheckoutId;
}
public Ptsv2paymentsProcessingInformation industryDataType(String industryDataType) {
this.industryDataType = industryDataType;
return this;
}
/**
* Indicates that the transaction includes industry-specific data. Possible Values: - `airline` - `restaurant` - `lodging` - `auto_rental` - `transit` - `healthcare_medical` - `healthcare_transit` - `transit` #### Card Present, Airlines and Auto Rental You must set this field to `airline` in order for airline data to be sent to the processor. For example, if this field is not set to `airline` or is not included in the request, no airline data is sent to the processor. You must set this field to `restaurant` in order for restaurant data to be sent to the processor. When this field is not set to `restaurant` or is not included in the request, no restaurant data is sent to the processor. You must set this field to `auto_rental` in order for auto rental data to be sent to the processor. For example, if this field is not set to `auto_rental` or is not included in the request, no auto rental data is sent to the processor. Restaurant data is supported only on CyberSource through VisaNet.
* @return industryDataType
**/
@ApiModelProperty(value = "Indicates that the transaction includes industry-specific data. Possible Values: - `airline` - `restaurant` - `lodging` - `auto_rental` - `transit` - `healthcare_medical` - `healthcare_transit` - `transit` #### Card Present, Airlines and Auto Rental You must set this field to `airline` in order for airline data to be sent to the processor. For example, if this field is not set to `airline` or is not included in the request, no airline data is sent to the processor. You must set this field to `restaurant` in order for restaurant data to be sent to the processor. When this field is not set to `restaurant` or is not included in the request, no restaurant data is sent to the processor. You must set this field to `auto_rental` in order for auto rental data to be sent to the processor. For example, if this field is not set to `auto_rental` or is not included in the request, no auto rental data is sent to the processor. Restaurant data is supported only on CyberSource through VisaNet. ")
public String getIndustryDataType() {
return industryDataType;
}
public void setIndustryDataType(String industryDataType) {
this.industryDataType = industryDataType;
}
public Ptsv2paymentsProcessingInformation authorizationOptions(Ptsv2paymentsProcessingInformationAuthorizationOptions authorizationOptions) {
this.authorizationOptions = authorizationOptions;
return this;
}
/**
* Get authorizationOptions
* @return authorizationOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationAuthorizationOptions getAuthorizationOptions() {
return authorizationOptions;
}
public void setAuthorizationOptions(Ptsv2paymentsProcessingInformationAuthorizationOptions authorizationOptions) {
this.authorizationOptions = authorizationOptions;
}
public Ptsv2paymentsProcessingInformation captureOptions(Ptsv2paymentsProcessingInformationCaptureOptions captureOptions) {
this.captureOptions = captureOptions;
return this;
}
/**
* Get captureOptions
* @return captureOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationCaptureOptions getCaptureOptions() {
return captureOptions;
}
public void setCaptureOptions(Ptsv2paymentsProcessingInformationCaptureOptions captureOptions) {
this.captureOptions = captureOptions;
}
public Ptsv2paymentsProcessingInformation recurringOptions(Ptsv2paymentsProcessingInformationRecurringOptions recurringOptions) {
this.recurringOptions = recurringOptions;
return this;
}
/**
* Get recurringOptions
* @return recurringOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationRecurringOptions getRecurringOptions() {
return recurringOptions;
}
public void setRecurringOptions(Ptsv2paymentsProcessingInformationRecurringOptions recurringOptions) {
this.recurringOptions = recurringOptions;
}
public Ptsv2paymentsProcessingInformation bankTransferOptions(Ptsv2paymentsProcessingInformationBankTransferOptions bankTransferOptions) {
this.bankTransferOptions = bankTransferOptions;
return this;
}
/**
* Get bankTransferOptions
* @return bankTransferOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationBankTransferOptions getBankTransferOptions() {
return bankTransferOptions;
}
public void setBankTransferOptions(Ptsv2paymentsProcessingInformationBankTransferOptions bankTransferOptions) {
this.bankTransferOptions = bankTransferOptions;
}
public Ptsv2paymentsProcessingInformation purchaseOptions(Ptsv2paymentsProcessingInformationPurchaseOptions purchaseOptions) {
this.purchaseOptions = purchaseOptions;
return this;
}
/**
* Get purchaseOptions
* @return purchaseOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationPurchaseOptions getPurchaseOptions() {
return purchaseOptions;
}
public void setPurchaseOptions(Ptsv2paymentsProcessingInformationPurchaseOptions purchaseOptions) {
this.purchaseOptions = purchaseOptions;
}
public Ptsv2paymentsProcessingInformation electronicBenefitsTransfer(Ptsv2paymentsProcessingInformationElectronicBenefitsTransfer electronicBenefitsTransfer) {
this.electronicBenefitsTransfer = electronicBenefitsTransfer;
return this;
}
/**
* Get electronicBenefitsTransfer
* @return electronicBenefitsTransfer
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationElectronicBenefitsTransfer getElectronicBenefitsTransfer() {
return electronicBenefitsTransfer;
}
public void setElectronicBenefitsTransfer(Ptsv2paymentsProcessingInformationElectronicBenefitsTransfer electronicBenefitsTransfer) {
this.electronicBenefitsTransfer = electronicBenefitsTransfer;
}
public Ptsv2paymentsProcessingInformation loanOptions(Ptsv2paymentsProcessingInformationLoanOptions loanOptions) {
this.loanOptions = loanOptions;
return this;
}
/**
* Get loanOptions
* @return loanOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationLoanOptions getLoanOptions() {
return loanOptions;
}
public void setLoanOptions(Ptsv2paymentsProcessingInformationLoanOptions loanOptions) {
this.loanOptions = loanOptions;
}
public Ptsv2paymentsProcessingInformation walletType(String walletType) {
this.walletType = walletType;
return this;
}
/**
* This field carries the wallet type in authorization requests and credit requests. Possible value are: - `101`: Masterpass remote payment. The customer created the wallet by manually interacting with a customer-controlled device such as a computer, tablet, or phone. This value is supported only for Masterpass transactions on Chase Paymentech Solutions and CyberSource through VisaNet. - `102`: Masterpass remote near field communication (NFC) payment. The customer created the wallet by tapping a PayPass card or customer-controlled device at a contactless card reader. This value is supported only for card-present Masterpass transactions on CyberSource through VisaNet. - `103`: Masterpass Apple Pay payment. The payment was made with a combination of Masterpass and Apple Pay. This value is supported only for Masterpass Apple Pay transactions on CyberSource through VisaNet. - `216`: Masterpass Google Pay payment. The payment was made with a combination of Masterpass and Google Pay. This value is supported only for Masterpass Google Pay transactions on CyberSource through VisaNet. - `217`: Masterpass Samsung Pay payment. The payment was made with a combination of Masterpass and Samsung Pay. This value is supported only for Masterpass Samsung Pay transactions on CyberSource through VisaNet. - `SDW`: Staged digital wallet. An issuer or operator created the wallet. This value is supported only for Masterpass transactions on Chase Paymentech Solutions. - `VCIND`: Visa Checkout payment. This value is supported only on CyberSource through VisaNet, FDC Compass, FDC Nashville Global, FDI Australia, and TSYS Acquiring Solutions. See Getting Started with Visa Checkout. For Visa Checkout transactions, the way CyberSource processes the value for this field depends on the processor. See the Visa Checkout section below. For all other values, this field is a passthrough; therefore, CyberSource does not verify the value or modify it in any way before sending it to the processor. Masterpass (101, 102, 103, 216, and 217): The Masterpass platform generates the wallet type value and passes it to you along with the customer's checkout information. Visa Checkout: This field is optional for Visa Checkout authorizations on FDI Australia. For all other processors, this field is required for Visa Checkout authorizations. For Visa Checkout transactions on the following processors, CyberSource sends the value that the processor expects for this field:FDC Compass,FDC Nashville Global,FDI Australia,TSYS Acquiring Solutions For all other processors, this field is a passthrough; therefore, CyberSource does not verify the value or modify it in any way before sending it to the processor. For incremental authorizations, this field is supported only for Mastercard and the supported values are 101 and 102. Payment card companies can introduce new values without notice. Your order management system should be able to process new values without problems. CyberSource through VisaNet When the value for this field is 101, 102, 103, 216, or 217, it corresponds to the following data in the TC 33 capture file5: Record: CP01 TCR6, Position: 88-90, Field: Mastercard Wallet Identifier. When the value for this field is VCIND, it corresponds to the following data in the TC 33 capture file5: Record: CP01 TCR8, Position: 72-76, Field: Agent Unique ID.
* @return walletType
**/
@ApiModelProperty(value = "This field carries the wallet type in authorization requests and credit requests. Possible value are: - `101`: Masterpass remote payment. The customer created the wallet by manually interacting with a customer-controlled device such as a computer, tablet, or phone. This value is supported only for Masterpass transactions on Chase Paymentech Solutions and CyberSource through VisaNet. - `102`: Masterpass remote near field communication (NFC) payment. The customer created the wallet by tapping a PayPass card or customer-controlled device at a contactless card reader. This value is supported only for card-present Masterpass transactions on CyberSource through VisaNet. - `103`: Masterpass Apple Pay payment. The payment was made with a combination of Masterpass and Apple Pay. This value is supported only for Masterpass Apple Pay transactions on CyberSource through VisaNet. - `216`: Masterpass Google Pay payment. The payment was made with a combination of Masterpass and Google Pay. This value is supported only for Masterpass Google Pay transactions on CyberSource through VisaNet. - `217`: Masterpass Samsung Pay payment. The payment was made with a combination of Masterpass and Samsung Pay. This value is supported only for Masterpass Samsung Pay transactions on CyberSource through VisaNet. - `SDW`: Staged digital wallet. An issuer or operator created the wallet. This value is supported only for Masterpass transactions on Chase Paymentech Solutions. - `VCIND`: Visa Checkout payment. This value is supported only on CyberSource through VisaNet, FDC Compass, FDC Nashville Global, FDI Australia, and TSYS Acquiring Solutions. See Getting Started with Visa Checkout. For Visa Checkout transactions, the way CyberSource processes the value for this field depends on the processor. See the Visa Checkout section below. For all other values, this field is a passthrough; therefore, CyberSource does not verify the value or modify it in any way before sending it to the processor. Masterpass (101, 102, 103, 216, and 217): The Masterpass platform generates the wallet type value and passes it to you along with the customer's checkout information. Visa Checkout: This field is optional for Visa Checkout authorizations on FDI Australia. For all other processors, this field is required for Visa Checkout authorizations. For Visa Checkout transactions on the following processors, CyberSource sends the value that the processor expects for this field:FDC Compass,FDC Nashville Global,FDI Australia,TSYS Acquiring Solutions For all other processors, this field is a passthrough; therefore, CyberSource does not verify the value or modify it in any way before sending it to the processor. For incremental authorizations, this field is supported only for Mastercard and the supported values are 101 and 102. Payment card companies can introduce new values without notice. Your order management system should be able to process new values without problems. CyberSource through VisaNet When the value for this field is 101, 102, 103, 216, or 217, it corresponds to the following data in the TC 33 capture file5: Record: CP01 TCR6, Position: 88-90, Field: Mastercard Wallet Identifier. When the value for this field is VCIND, it corresponds to the following data in the TC 33 capture file5: Record: CP01 TCR8, Position: 72-76, Field: Agent Unique ID. ")
public String getWalletType() {
return walletType;
}
public void setWalletType(String walletType) {
this.walletType = walletType;
}
public Ptsv2paymentsProcessingInformation nationalNetDomesticData(String nationalNetDomesticData) {
this.nationalNetDomesticData = nationalNetDomesticData;
return this;
}
/**
* Supplementary domestic transaction information provided by the acquirer for National Net Settlement Service (NNSS) transactions. NNSS is a settlement service that Visa provides. For transactions on CyberSource through VisaNet in countries that subscribe to NNSS: VisaNet clears transactions; VisaNet transfers funds to the acquirer after deducting processing fees and interchange fees. VisaNet settles transactions in the local pricing currency through a local financial institution. This field is supported only on CyberSource through VisaNet for domestic data in Colombia
* @return nationalNetDomesticData
**/
@ApiModelProperty(value = "Supplementary domestic transaction information provided by the acquirer for National Net Settlement Service (NNSS) transactions. NNSS is a settlement service that Visa provides. For transactions on CyberSource through VisaNet in countries that subscribe to NNSS: VisaNet clears transactions; VisaNet transfers funds to the acquirer after deducting processing fees and interchange fees. VisaNet settles transactions in the local pricing currency through a local financial institution. This field is supported only on CyberSource through VisaNet for domestic data in Colombia ")
public String getNationalNetDomesticData() {
return nationalNetDomesticData;
}
public void setNationalNetDomesticData(String nationalNetDomesticData) {
this.nationalNetDomesticData = nationalNetDomesticData;
}
public Ptsv2paymentsProcessingInformation japanPaymentOptions(Ptsv2paymentsProcessingInformationJapanPaymentOptions japanPaymentOptions) {
this.japanPaymentOptions = japanPaymentOptions;
return this;
}
/**
* Get japanPaymentOptions
* @return japanPaymentOptions
**/
@ApiModelProperty(value = "")
public Ptsv2paymentsProcessingInformationJapanPaymentOptions getJapanPaymentOptions() {
return japanPaymentOptions;
}
public void setJapanPaymentOptions(Ptsv2paymentsProcessingInformationJapanPaymentOptions japanPaymentOptions) {
this.japanPaymentOptions = japanPaymentOptions;
}
public Ptsv2paymentsProcessingInformation mobileRemotePaymentType(String mobileRemotePaymentType) {
this.mobileRemotePaymentType = mobileRemotePaymentType;
return this;
}
/**
* Type of payment initiated from a cardholder's mobile device. Possible values: - `1` : Consumer-initiated remote purchase, face-to-face - `2` : Consumer-initiated remote purchase, e-commerce - `3` : Consumer-initiated remote purchase, mail order / telephone order - `4` : Consumer-initiated bill pay - `5` : Consumer-initiated top up - `6` : Consumer-initiated cash out - `7` : ATM triggered or agent-initiated cash out - `8` : Merchant-initiated remote purchase, face-to-face - `9` : Merchant-initiated remote purchase, e-commerce This field is supported only for Mastercard transactions on CyberSource through VisaNet. Optional field. **Note** On CyberSource through VisaNet, the value for this field corresponds to the following data in the TC 33 capture file: - Record: CP01 TCR6 - Position: 94 - Field: Mastercard Mobile Remote Payment Program Indicator The TC 33 Capture file contains information about the purchases and refunds that a merchant submits to CyberSource. CyberSource through VisaNet creates the TC 33 Capture file at the end of the day and sends it to the merchant's acquirer, who uses this information to facilitate end-of-day clearing processing with payment networks.
* @return mobileRemotePaymentType
**/
@ApiModelProperty(value = "Type of payment initiated from a cardholder's mobile device. Possible values: - `1` : Consumer-initiated remote purchase, face-to-face - `2` : Consumer-initiated remote purchase, e-commerce - `3` : Consumer-initiated remote purchase, mail order / telephone order - `4` : Consumer-initiated bill pay - `5` : Consumer-initiated top up - `6` : Consumer-initiated cash out - `7` : ATM triggered or agent-initiated cash out - `8` : Merchant-initiated remote purchase, face-to-face - `9` : Merchant-initiated remote purchase, e-commerce This field is supported only for Mastercard transactions on CyberSource through VisaNet. Optional field. **Note** On CyberSource through VisaNet, the value for this field corresponds to the following data in the TC 33 capture file: - Record: CP01 TCR6 - Position: 94 - Field: Mastercard Mobile Remote Payment Program Indicator The TC 33 Capture file contains information about the purchases and refunds that a merchant submits to CyberSource. CyberSource through VisaNet creates the TC 33 Capture file at the end of the day and sends it to the merchant's acquirer, who uses this information to facilitate end-of-day clearing processing with payment networks. ")
public String getMobileRemotePaymentType() {
return mobileRemotePaymentType;
}
public void setMobileRemotePaymentType(String mobileRemotePaymentType) {
this.mobileRemotePaymentType = mobileRemotePaymentType;
}
public Ptsv2paymentsProcessingInformation extendedCreditTotalCount(String extendedCreditTotalCount) {
this.extendedCreditTotalCount = extendedCreditTotalCount;
return this;
}
/**
* A private national-use field submitted by acquirers and issuers in South Africa for South Africa-domestic (intra-country) authorizations and financial requests. Values for this field are 00 through 99.
* @return extendedCreditTotalCount
**/
@ApiModelProperty(value = "A private national-use field submitted by acquirers and issuers in South Africa for South Africa-domestic (intra-country) authorizations and financial requests. Values for this field are 00 through 99. ")
public String getExtendedCreditTotalCount() {
return extendedCreditTotalCount;
}
public void setExtendedCreditTotalCount(String extendedCreditTotalCount) {
this.extendedCreditTotalCount = extendedCreditTotalCount;
}
public Ptsv2paymentsProcessingInformation networkRoutingOrder(String networkRoutingOrder) {
this.networkRoutingOrder = networkRoutingOrder;
return this;
}
/**
* On PIN Debit Gateways: This U.S.-only field is optionally used by participants (merchants and acquirers) to specify the network access priority. VisaNet checks to determine if there are issuer routing preferences for any of the networks specified by the sharing group code. 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. #### PIN debit Priority order of the networks through which he transaction will be routed. Set this value to a series of one-character network codes in your preferred order. This is a list of the network codes: | Network | Code | | --- | --- | | Accel | E | | AFFN | U | | Alaska Option | 3 | | CU24 | C | | Interlink | G | | Maestro | 8 | | NETS | P | | NYCE | F | | Pulse | H | | Shazam | 7 | | Star | M | | Visa | V | For example, if the Star network is your first preference and Pulse is your second preference, set this field to a value of `MH`. When you do not include this value in your PIN debit request, the list of network codes from your account is used. **Note** This field is supported only for businesses located in the U.S. Optional field for PIN debit credit or PIN debit purchase.
* @return networkRoutingOrder
**/
@ApiModelProperty(value = "On PIN Debit Gateways: This U.S.-only field is optionally used by participants (merchants and acquirers) to specify the network access priority. VisaNet checks to determine if there are issuer routing preferences for any of the networks specified by the sharing group code. 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. #### PIN debit Priority order of the networks through which he transaction will be routed. Set this value to a series of one-character network codes in your preferred order. This is a list of the network codes: | Network | Code | | --- | --- | | Accel | E | | AFFN | U | | Alaska Option | 3 | | CU24 | C | | Interlink | G | | Maestro | 8 | | NETS | P | | NYCE | F | | Pulse | H | | Shazam | 7 | | Star | M | | Visa | V | For example, if the Star network is your first preference and Pulse is your second preference, set this field to a value of `MH`. When you do not include this value in your PIN debit request, the list of network codes from your account is used. **Note** This field is supported only for businesses located in the U.S. Optional field for PIN debit credit or PIN debit purchase. ")
public String getNetworkRoutingOrder() {
return networkRoutingOrder;
}
public void setNetworkRoutingOrder(String networkRoutingOrder) {
this.networkRoutingOrder = networkRoutingOrder;
}
public Ptsv2paymentsProcessingInformation payByPointsIndicator(Boolean payByPointsIndicator) {
this.payByPointsIndicator = payByPointsIndicator;
return this;
}
/**
* Flag that indicates if the transaction is pay by points transaction true: Transaction uses loyalty points false: Transaction does not use loyalty points Default: false
* @return payByPointsIndicator
**/
@ApiModelProperty(value = "Flag that indicates if the transaction is pay by points transaction true: Transaction uses loyalty points false: Transaction does not use loyalty points Default: false ")
public Boolean PayByPointsIndicator() {
return payByPointsIndicator;
}
public void setPayByPointsIndicator(Boolean payByPointsIndicator) {
this.payByPointsIndicator = payByPointsIndicator;
}
public Ptsv2paymentsProcessingInformation timeout(Integer timeout) {
this.timeout = timeout;
return this;
}
/**
* Minutes until a pending MyBank transaction will be timed out. Value must be between 5 and 30. Default is 5.
* @return timeout
**/
@ApiModelProperty(value = "Minutes until a pending MyBank transaction will be timed out. Value must be between 5 and 30. Default is 5. ")
public Integer getTimeout() {
return timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
}
public Ptsv2paymentsProcessingInformation isReturnAuthRecordEnabled(Boolean isReturnAuthRecordEnabled) {
this.isReturnAuthRecordEnabled = isReturnAuthRecordEnabled;
return this;
}
/**
* Flag that indicates the functionality we are having for merchants for which auth is done through Cybersource but settlement is done by themselves. true: functionality is supported. Processor should send raw processor auth response to Merchant. false: functionality is not supported. Default: false
* @return isReturnAuthRecordEnabled
**/
@ApiModelProperty(value = "Flag that indicates the functionality we are having for merchants for which auth is done through Cybersource but settlement is done by themselves. true: functionality is supported. Processor should send raw processor auth response to Merchant. false: functionality is not supported. Default: false ")
public Boolean IsReturnAuthRecordEnabled() {
return isReturnAuthRecordEnabled;
}
public void setIsReturnAuthRecordEnabled(Boolean isReturnAuthRecordEnabled) {
this.isReturnAuthRecordEnabled = isReturnAuthRecordEnabled;
}
public Ptsv2paymentsProcessingInformation networkPartnerId(String networkPartnerId) {
this.networkPartnerId = networkPartnerId;
return this;
}
/**
* Merchant payment gateway ID that is assigned by Mastercard and is provided by the acquirer when a registered merchant payment gateway service provider is involved in the transaction. This field is supported for Visa Platform Connect.
* @return networkPartnerId
**/
@ApiModelProperty(value = "Merchant payment gateway ID that is assigned by Mastercard and is provided by the acquirer when a registered merchant payment gateway service provider is involved in the transaction. This field is supported for Visa Platform Connect. ")
public String getNetworkPartnerId() {
return networkPartnerId;
}
public void setNetworkPartnerId(String networkPartnerId) {
this.networkPartnerId = networkPartnerId;
}
public Ptsv2paymentsProcessingInformation paymentType(String paymentType) {
this.paymentType = paymentType;
return this;
}
/**
* Identifier for the payment type.
* @return paymentType
**/
@ApiModelProperty(value = "Identifier for the payment type. ")
public String getPaymentType() {
return paymentType;
}
public void setPaymentType(String paymentType) {
this.paymentType = paymentType;
}
public Ptsv2paymentsProcessingInformation enablerId(String enablerId) {
this.enablerId = enablerId;
return this;
}
/**
* Enablers are payment processing entities that are not acquiring members and are often the primary relationship owner with merchants and originators. Enablers own technical solutions through which the merchant or originator will access acceptance. The Enabler ID is a five-character hexadecimal identifier that will be used by Visa to identify enablers. Enabler ID assignment will be determined by Visa. Visa will communicate Enablers assignments to enablers.
* @return enablerId
**/
@ApiModelProperty(value = "Enablers are payment processing entities that are not acquiring members and are often the primary relationship owner with merchants and originators. Enablers own technical solutions through which the merchant or originator will access acceptance. The Enabler ID is a five-character hexadecimal identifier that will be used by Visa to identify enablers. Enabler ID assignment will be determined by Visa. Visa will communicate Enablers assignments to enablers. ")
public String getEnablerId() {
return enablerId;
}
public void setEnablerId(String enablerId) {
this.enablerId = enablerId;
}
public Ptsv2paymentsProcessingInformation processingInstruction(String processingInstruction) {
this.processingInstruction = processingInstruction;
return this;
}
/**
* The instruction to process an order. - default value: 'NO_INSTRUCTION' - 'ORDER_SAVED_EXPLICITLY'
* @return processingInstruction
**/
@ApiModelProperty(value = "The instruction to process an order. - default value: 'NO_INSTRUCTION' - 'ORDER_SAVED_EXPLICITLY' ")
public String getProcessingInstruction() {
return processingInstruction;
}
public void setProcessingInstruction(String processingInstruction) {
this.processingInstruction = processingInstruction;
}
public Ptsv2paymentsProcessingInformation transactionTypeIndicator(String transactionTypeIndicator) {
this.transactionTypeIndicator = transactionTypeIndicator;
return this;
}
/**
* This field is used identify the type of payment transaction taking place. This field is applicable for MasterCard transactions only. Possible values: - 201- Mastercard Rebate - 202- rePower Load Value - 203- Gaming Re-pay - 204- General Person-to-Person - 205- General Transfer to Own Account - 206- Agent Cash Out - 207- Payment of Own Credit Card Bill - 208- Business Disbursement - 209- Government/Non-Profit Disbursement - 210- Rapid Merchant Settlement - 211- Cash in at ATM (Usage limited to specific countries) - 212- Cash in at Point of Sale (Usage limited to specific countries) - 213- General Business to Business Transfer - 214- Mastercard Merchant Presented QR - 215- Mastercard Merchant Presented QR Refund Payment - 216- Utility Payments (for Brazil domestic use only) - 217- Government Services (for Brazil domestic use only) - 218- Mobile phone top-ups (for Brazil domestic use only) - 219- Coupon booklet payments (for Brazil domestic use only) - 220- General Person-to-Person Transfer - 221- Person-to-Person Transfer to Card Account - 222- General Transfer to Own Account - 223- Agent Cash Out - 224- Payment of Own Credit Card Bill - 225- Business Disbursement - 226- Transfer to Own Staged Digital Wallet Account - 227- Transfer to Own Debit or Prepaid Account - 228- General Business-to-Business Transfer - 229- Installment-based repayment - 230- Mastercard ATM Cash Pick-Up Transaction - 231- Cryptocurrency - 232- High-risk Securities
* @return transactionTypeIndicator
**/
@ApiModelProperty(value = "This field is used identify the type of payment transaction taking place. This field is applicable for MasterCard transactions only. Possible values: - 201- Mastercard Rebate - 202- rePower Load Value - 203- Gaming Re-pay - 204- General Person-to-Person - 205- General Transfer to Own Account - 206- Agent Cash Out - 207- Payment of Own Credit Card Bill - 208- Business Disbursement - 209- Government/Non-Profit Disbursement - 210- Rapid Merchant Settlement - 211- Cash in at ATM (Usage limited to specific countries) - 212- Cash in at Point of Sale (Usage limited to specific countries) - 213- General Business to Business Transfer - 214- Mastercard Merchant Presented QR - 215- Mastercard Merchant Presented QR Refund Payment - 216- Utility Payments (for Brazil domestic use only) - 217- Government Services (for Brazil domestic use only) - 218- Mobile phone top-ups (for Brazil domestic use only) - 219- Coupon booklet payments (for Brazil domestic use only) - 220- General Person-to-Person Transfer - 221- Person-to-Person Transfer to Card Account - 222- General Transfer to Own Account - 223- Agent Cash Out - 224- Payment of Own Credit Card Bill - 225- Business Disbursement - 226- Transfer to Own Staged Digital Wallet Account - 227- Transfer to Own Debit or Prepaid Account - 228- General Business-to-Business Transfer - 229- Installment-based repayment - 230- Mastercard ATM Cash Pick-Up Transaction - 231- Cryptocurrency - 232- High-risk Securities ")
public String getTransactionTypeIndicator() {
return transactionTypeIndicator;
}
public void setTransactionTypeIndicator(String transactionTypeIndicator) {
this.transactionTypeIndicator = transactionTypeIndicator;
}
public Ptsv2paymentsProcessingInformation purposeOfPayment(String purposeOfPayment) {
this.purposeOfPayment = purposeOfPayment;
return this;
}
/**
* This field is applicable for AFT and OCT transactions. For list of supported values, please refer to Developer Guide.
* @return purposeOfPayment
**/
@ApiModelProperty(value = "This field is applicable for AFT and OCT transactions. For list of supported values, please refer to Developer Guide. ")
public String getPurposeOfPayment() {
return purposeOfPayment;
}
public void setPurposeOfPayment(String purposeOfPayment) {
this.purposeOfPayment = purposeOfPayment;
}
public Ptsv2paymentsProcessingInformation languageCode(String languageCode) {
this.languageCode = languageCode;
return this;
}
/**
* Contains the ISO 639-2 defined language Code
* @return languageCode
**/
@ApiModelProperty(value = "Contains the ISO 639-2 defined language Code ")
public String getLanguageCode() {
return languageCode;
}
public void setLanguageCode(String languageCode) {
this.languageCode = languageCode;
}
public Ptsv2paymentsProcessingInformation originalPaymentId(String originalPaymentId) {
this.originalPaymentId = originalPaymentId;
return this;
}
/**
* This value is used for linking Authorization extension transaction to the original Authorization transaction and for linking MIT (Merchant initiated transaction) with the respective CIT (Customer initiated transaction).
* @return originalPaymentId
**/
@ApiModelProperty(value = "This value is used for linking Authorization extension transaction to the original Authorization transaction and for linking MIT (Merchant initiated transaction) with the respective CIT (Customer initiated transaction). ")
public String getOriginalPaymentId() {
return originalPaymentId;
}
public void setOriginalPaymentId(String originalPaymentId) {
this.originalPaymentId = originalPaymentId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Ptsv2paymentsProcessingInformation ptsv2paymentsProcessingInformation = (Ptsv2paymentsProcessingInformation) o;
return Objects.equals(this.actionList, ptsv2paymentsProcessingInformation.actionList) &&
Objects.equals(this.enableEscrowOption, ptsv2paymentsProcessingInformation.enableEscrowOption) &&
Objects.equals(this.actionTokenTypes, ptsv2paymentsProcessingInformation.actionTokenTypes) &&
Objects.equals(this.binSource, ptsv2paymentsProcessingInformation.binSource) &&
Objects.equals(this.capture, ptsv2paymentsProcessingInformation.capture) &&
Objects.equals(this.processorId, ptsv2paymentsProcessingInformation.processorId) &&
Objects.equals(this.businessApplicationId, ptsv2paymentsProcessingInformation.businessApplicationId) &&
Objects.equals(this.commerceIndicator, ptsv2paymentsProcessingInformation.commerceIndicator) &&
Objects.equals(this.commerceIndicatorLabel, ptsv2paymentsProcessingInformation.commerceIndicatorLabel) &&
Objects.equals(this.paymentSolution, ptsv2paymentsProcessingInformation.paymentSolution) &&
Objects.equals(this.reconciliationId, ptsv2paymentsProcessingInformation.reconciliationId) &&
Objects.equals(this.linkId, ptsv2paymentsProcessingInformation.linkId) &&
Objects.equals(this.purchaseLevel, ptsv2paymentsProcessingInformation.purchaseLevel) &&
Objects.equals(this.transactionTimeout, ptsv2paymentsProcessingInformation.transactionTimeout) &&
Objects.equals(this.intentsId, ptsv2paymentsProcessingInformation.intentsId) &&
Objects.equals(this.reportGroup, ptsv2paymentsProcessingInformation.reportGroup) &&
Objects.equals(this.visaCheckoutId, ptsv2paymentsProcessingInformation.visaCheckoutId) &&
Objects.equals(this.industryDataType, ptsv2paymentsProcessingInformation.industryDataType) &&
Objects.equals(this.authorizationOptions, ptsv2paymentsProcessingInformation.authorizationOptions) &&
Objects.equals(this.captureOptions, ptsv2paymentsProcessingInformation.captureOptions) &&
Objects.equals(this.recurringOptions, ptsv2paymentsProcessingInformation.recurringOptions) &&
Objects.equals(this.bankTransferOptions, ptsv2paymentsProcessingInformation.bankTransferOptions) &&
Objects.equals(this.purchaseOptions, ptsv2paymentsProcessingInformation.purchaseOptions) &&
Objects.equals(this.electronicBenefitsTransfer, ptsv2paymentsProcessingInformation.electronicBenefitsTransfer) &&
Objects.equals(this.loanOptions, ptsv2paymentsProcessingInformation.loanOptions) &&
Objects.equals(this.walletType, ptsv2paymentsProcessingInformation.walletType) &&
Objects.equals(this.nationalNetDomesticData, ptsv2paymentsProcessingInformation.nationalNetDomesticData) &&
Objects.equals(this.japanPaymentOptions, ptsv2paymentsProcessingInformation.japanPaymentOptions) &&
Objects.equals(this.mobileRemotePaymentType, ptsv2paymentsProcessingInformation.mobileRemotePaymentType) &&
Objects.equals(this.extendedCreditTotalCount, ptsv2paymentsProcessingInformation.extendedCreditTotalCount) &&
Objects.equals(this.networkRoutingOrder, ptsv2paymentsProcessingInformation.networkRoutingOrder) &&
Objects.equals(this.payByPointsIndicator, ptsv2paymentsProcessingInformation.payByPointsIndicator) &&
Objects.equals(this.timeout, ptsv2paymentsProcessingInformation.timeout) &&
Objects.equals(this.isReturnAuthRecordEnabled, ptsv2paymentsProcessingInformation.isReturnAuthRecordEnabled) &&
Objects.equals(this.networkPartnerId, ptsv2paymentsProcessingInformation.networkPartnerId) &&
Objects.equals(this.paymentType, ptsv2paymentsProcessingInformation.paymentType) &&
Objects.equals(this.enablerId, ptsv2paymentsProcessingInformation.enablerId) &&
Objects.equals(this.processingInstruction, ptsv2paymentsProcessingInformation.processingInstruction) &&
Objects.equals(this.transactionTypeIndicator, ptsv2paymentsProcessingInformation.transactionTypeIndicator) &&
Objects.equals(this.purposeOfPayment, ptsv2paymentsProcessingInformation.purposeOfPayment) &&
Objects.equals(this.languageCode, ptsv2paymentsProcessingInformation.languageCode) &&
Objects.equals(this.originalPaymentId, ptsv2paymentsProcessingInformation.originalPaymentId);
}
@Override
public int hashCode() {
return Objects.hash(actionList, enableEscrowOption, actionTokenTypes, binSource, capture, processorId, businessApplicationId, commerceIndicator, commerceIndicatorLabel, paymentSolution, reconciliationId, linkId, purchaseLevel, transactionTimeout, intentsId, reportGroup, visaCheckoutId, industryDataType, authorizationOptions, captureOptions, recurringOptions, bankTransferOptions, purchaseOptions, electronicBenefitsTransfer, loanOptions, walletType, nationalNetDomesticData, japanPaymentOptions, mobileRemotePaymentType, extendedCreditTotalCount, networkRoutingOrder, payByPointsIndicator, timeout, isReturnAuthRecordEnabled, networkPartnerId, paymentType, enablerId, processingInstruction, transactionTypeIndicator, purposeOfPayment, languageCode, originalPaymentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Ptsv2paymentsProcessingInformation {\n");
if (actionList != null) sb.append(" actionList: ").append(toIndentedString(actionList)).append("\n");
if (enableEscrowOption != null) sb.append(" enableEscrowOption: ").append(toIndentedString(enableEscrowOption)).append("\n");
if (actionTokenTypes != null) sb.append(" actionTokenTypes: ").append(toIndentedString(actionTokenTypes)).append("\n");
if (binSource != null) sb.append(" binSource: ").append(toIndentedString(binSource)).append("\n");
if (capture != null) sb.append(" capture: ").append(toIndentedString(capture)).append("\n");
if (processorId != null) sb.append(" processorId: ").append(toIndentedString(processorId)).append("\n");
if (businessApplicationId != null) sb.append(" businessApplicationId: ").append(toIndentedString(businessApplicationId)).append("\n");
if (commerceIndicator != null) sb.append(" commerceIndicator: ").append(toIndentedString(commerceIndicator)).append("\n");
if (commerceIndicatorLabel != null) sb.append(" commerceIndicatorLabel: ").append(toIndentedString(commerceIndicatorLabel)).append("\n");
if (paymentSolution != null) sb.append(" paymentSolution: ").append(toIndentedString(paymentSolution)).append("\n");
if (reconciliationId != null) sb.append(" reconciliationId: ").append(toIndentedString(reconciliationId)).append("\n");
if (linkId != null) sb.append(" linkId: ").append(toIndentedString(linkId)).append("\n");
if (purchaseLevel != null) sb.append(" purchaseLevel: ").append(toIndentedString(purchaseLevel)).append("\n");
if (transactionTimeout != null) sb.append(" transactionTimeout: ").append(toIndentedString(transactionTimeout)).append("\n");
if (intentsId != null) sb.append(" intentsId: ").append(toIndentedString(intentsId)).append("\n");
if (reportGroup != null) sb.append(" reportGroup: ").append(toIndentedString(reportGroup)).append("\n");
if (visaCheckoutId != null) sb.append(" visaCheckoutId: ").append(toIndentedString(visaCheckoutId)).append("\n");
if (industryDataType != null) sb.append(" industryDataType: ").append(toIndentedString(industryDataType)).append("\n");
if (authorizationOptions != null) sb.append(" authorizationOptions: ").append(toIndentedString(authorizationOptions)).append("\n");
if (captureOptions != null) sb.append(" captureOptions: ").append(toIndentedString(captureOptions)).append("\n");
if (recurringOptions != null) sb.append(" recurringOptions: ").append(toIndentedString(recurringOptions)).append("\n");
if (bankTransferOptions != null) sb.append(" bankTransferOptions: ").append(toIndentedString(bankTransferOptions)).append("\n");
if (purchaseOptions != null) sb.append(" purchaseOptions: ").append(toIndentedString(purchaseOptions)).append("\n");
if (electronicBenefitsTransfer != null) sb.append(" electronicBenefitsTransfer: ").append(toIndentedString(electronicBenefitsTransfer)).append("\n");
if (loanOptions != null) sb.append(" loanOptions: ").append(toIndentedString(loanOptions)).append("\n");
if (walletType != null) sb.append(" walletType: ").append(toIndentedString(walletType)).append("\n");
if (nationalNetDomesticData != null) sb.append(" nationalNetDomesticData: ").append(toIndentedString(nationalNetDomesticData)).append("\n");
if (japanPaymentOptions != null) sb.append(" japanPaymentOptions: ").append(toIndentedString(japanPaymentOptions)).append("\n");
if (mobileRemotePaymentType != null) sb.append(" mobileRemotePaymentType: ").append(toIndentedString(mobileRemotePaymentType)).append("\n");
if (extendedCreditTotalCount != null) sb.append(" extendedCreditTotalCount: ").append(toIndentedString(extendedCreditTotalCount)).append("\n");
if (networkRoutingOrder != null) sb.append(" networkRoutingOrder: ").append(toIndentedString(networkRoutingOrder)).append("\n");
if (payByPointsIndicator != null) sb.append(" payByPointsIndicator: ").append(toIndentedString(payByPointsIndicator)).append("\n");
if (timeout != null) sb.append(" timeout: ").append(toIndentedString(timeout)).append("\n");
if (isReturnAuthRecordEnabled != null) sb.append(" isReturnAuthRecordEnabled: ").append(toIndentedString(isReturnAuthRecordEnabled)).append("\n");
if (networkPartnerId != null) sb.append(" networkPartnerId: ").append(toIndentedString(networkPartnerId)).append("\n");
if (paymentType != null) sb.append(" paymentType: ").append(toIndentedString(paymentType)).append("\n");
if (enablerId != null) sb.append(" enablerId: ").append(toIndentedString(enablerId)).append("\n");
if (processingInstruction != null) sb.append(" processingInstruction: ").append(toIndentedString(processingInstruction)).append("\n");
if (transactionTypeIndicator != null) sb.append(" transactionTypeIndicator: ").append(toIndentedString(transactionTypeIndicator)).append("\n");
if (purposeOfPayment != null) sb.append(" purposeOfPayment: ").append(toIndentedString(purposeOfPayment)).append("\n");
if (languageCode != null) sb.append(" languageCode: ").append(toIndentedString(languageCode)).append("\n");
if (originalPaymentId != null) sb.append(" originalPaymentId: ").append(toIndentedString(originalPaymentId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
// return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy