
Model.Riskv1decisionsConsumerAuthenticationInformation 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.Riskv1decisionsConsumerAuthenticationInformationStrongAuthentication;
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;
/**
* Riskv1decisionsConsumerAuthenticationInformation
*/
public class Riskv1decisionsConsumerAuthenticationInformation {
@SerializedName("strongAuthentication")
private Riskv1decisionsConsumerAuthenticationInformationStrongAuthentication strongAuthentication = null;
@SerializedName("acsWindowSize")
private String acsWindowSize = null;
@SerializedName("alternateAuthenticationData")
private String alternateAuthenticationData = null;
@SerializedName("alternateAuthenticationDate")
private String alternateAuthenticationDate = null;
@SerializedName("alternateAuthenticationMethod")
private String alternateAuthenticationMethod = null;
@SerializedName("authenticationDate")
private String authenticationDate = null;
@SerializedName("authenticationTransactionId")
private String authenticationTransactionId = null;
@SerializedName("transactionFlowIndicator")
private Integer transactionFlowIndicator = null;
@SerializedName("challengeCode")
private String challengeCode = null;
@SerializedName("challengeStatus")
private String challengeStatus = null;
@SerializedName("customerCardAlias")
private String customerCardAlias = null;
@SerializedName("decoupledAuthenticationIndicator")
private String decoupledAuthenticationIndicator = null;
@SerializedName("decoupledAuthenticationMaxTime")
private String decoupledAuthenticationMaxTime = null;
@SerializedName("defaultCard")
private Boolean defaultCard = null;
@SerializedName("deviceChannel")
private String deviceChannel = null;
@SerializedName("installmentTotalCount")
private Integer installmentTotalCount = null;
@SerializedName("merchantFraudRate")
private String merchantFraudRate = null;
@SerializedName("marketingOptIn")
private Boolean marketingOptIn = null;
@SerializedName("marketingSource")
private String marketingSource = null;
@SerializedName("mcc")
private String mcc = null;
@SerializedName("merchantScore")
private Integer merchantScore = null;
@SerializedName("messageCategory")
private String messageCategory = null;
@SerializedName("npaCode")
private String npaCode = null;
@SerializedName("overridePaymentMethod")
private String overridePaymentMethod = null;
@SerializedName("overrideCountryCode")
private String overrideCountryCode = null;
@SerializedName("priorAuthenticationData")
private String priorAuthenticationData = null;
@SerializedName("priorAuthenticationMethod")
private String priorAuthenticationMethod = null;
@SerializedName("priorAuthenticationReferenceId")
private String priorAuthenticationReferenceId = null;
@SerializedName("priorAuthenticationTime")
private String priorAuthenticationTime = null;
@SerializedName("productCode")
private String productCode = null;
@SerializedName("returnUrl")
private String returnUrl = null;
@SerializedName("requestorId")
private String requestorId = null;
@SerializedName("requestorInitiatedAuthenticationIndicator")
private String requestorInitiatedAuthenticationIndicator = null;
@SerializedName("requestorName")
private String requestorName = null;
@SerializedName("referenceId")
private String referenceId = null;
@SerializedName("sdkMaxTimeout")
private String sdkMaxTimeout = null;
@SerializedName("secureCorporatePaymentIndicator")
private String secureCorporatePaymentIndicator = null;
@SerializedName("transactionMode")
private String transactionMode = null;
@SerializedName("whiteListStatus")
private String whiteListStatus = null;
@SerializedName("scoreRequest")
private Integer scoreRequest = null;
public Riskv1decisionsConsumerAuthenticationInformation strongAuthentication(Riskv1decisionsConsumerAuthenticationInformationStrongAuthentication strongAuthentication) {
this.strongAuthentication = strongAuthentication;
return this;
}
/**
* Get strongAuthentication
* @return strongAuthentication
**/
@ApiModelProperty(value = "")
public Riskv1decisionsConsumerAuthenticationInformationStrongAuthentication getStrongAuthentication() {
return strongAuthentication;
}
public void setStrongAuthentication(Riskv1decisionsConsumerAuthenticationInformationStrongAuthentication strongAuthentication) {
this.strongAuthentication = strongAuthentication;
}
public Riskv1decisionsConsumerAuthenticationInformation acsWindowSize(String acsWindowSize) {
this.acsWindowSize = acsWindowSize;
return this;
}
/**
* An override field that a merchant can pass in to set the challenge window size to display to the end cardholder. The ACS (Active Control Server) will reply with content that is formatted appropriately to this window size to allow for the best user experience. The sizes are width x height in pixels of the window displayed in the cardholder browser window. 01 - 250x400 02 - 390x400 03 - 500x600 04 - 600x400 05 - Full page
* @return acsWindowSize
**/
@ApiModelProperty(value = "An override field that a merchant can pass in to set the challenge window size to display to the end cardholder. The ACS (Active Control Server) will reply with content that is formatted appropriately to this window size to allow for the best user experience. The sizes are width x height in pixels of the window displayed in the cardholder browser window. 01 - 250x400 02 - 390x400 03 - 500x600 04 - 600x400 05 - Full page ")
public String getAcsWindowSize() {
return acsWindowSize;
}
public void setAcsWindowSize(String acsWindowSize) {
this.acsWindowSize = acsWindowSize;
}
public Riskv1decisionsConsumerAuthenticationInformation alternateAuthenticationData(String alternateAuthenticationData) {
this.alternateAuthenticationData = alternateAuthenticationData;
return this;
}
/**
* Data that documents and supports a specific authentication process.
* @return alternateAuthenticationData
**/
@ApiModelProperty(value = "Data that documents and supports a specific authentication process. ")
public String getAlternateAuthenticationData() {
return alternateAuthenticationData;
}
public void setAlternateAuthenticationData(String alternateAuthenticationData) {
this.alternateAuthenticationData = alternateAuthenticationData;
}
public Riskv1decisionsConsumerAuthenticationInformation alternateAuthenticationDate(String alternateAuthenticationDate) {
this.alternateAuthenticationDate = alternateAuthenticationDate;
return this;
}
/**
* Date and time in UTC of the cardholder authentication. Format: YYYYMMDDHHMM
* @return alternateAuthenticationDate
**/
@ApiModelProperty(value = "Date and time in UTC of the cardholder authentication. Format: YYYYMMDDHHMM ")
public String getAlternateAuthenticationDate() {
return alternateAuthenticationDate;
}
public void setAlternateAuthenticationDate(String alternateAuthenticationDate) {
this.alternateAuthenticationDate = alternateAuthenticationDate;
}
public Riskv1decisionsConsumerAuthenticationInformation alternateAuthenticationMethod(String alternateAuthenticationMethod) {
this.alternateAuthenticationMethod = alternateAuthenticationMethod;
return this;
}
/**
* Mechanism used by the cardholder to authenticate to the 3D Secure requestor. Possible values: - `01`: No authentication occurred - `02`: Login using merchant system credentials - `03`: Login using Federated ID - `04`: Login using issuer credentials - `05`: Login using third-party authenticator - `06`: Login using FIDO Authenticator
* @return alternateAuthenticationMethod
**/
@ApiModelProperty(value = "Mechanism used by the cardholder to authenticate to the 3D Secure requestor. Possible values: - `01`: No authentication occurred - `02`: Login using merchant system credentials - `03`: Login using Federated ID - `04`: Login using issuer credentials - `05`: Login using third-party authenticator - `06`: Login using FIDO Authenticator ")
public String getAlternateAuthenticationMethod() {
return alternateAuthenticationMethod;
}
public void setAlternateAuthenticationMethod(String alternateAuthenticationMethod) {
this.alternateAuthenticationMethod = alternateAuthenticationMethod;
}
public Riskv1decisionsConsumerAuthenticationInformation authenticationDate(String authenticationDate) {
this.authenticationDate = authenticationDate;
return this;
}
/**
* The date/time of the authentication at the 3DS servers. RISK update authorization service in auth request payload with value returned in `consumerAuthenticationInformation.alternateAuthenticationData` if merchant calls via CYBS or field can be provided by merchant in authorization request if calling an external 3DS provider. This field is supported for Cartes Bancaires Fast'R transactions on Credit Mutuel-CIC. Format: YYYYMMDDHHMMSS
* @return authenticationDate
**/
@ApiModelProperty(value = "The date/time of the authentication at the 3DS servers. RISK update authorization service in auth request payload with value returned in `consumerAuthenticationInformation.alternateAuthenticationData` if merchant calls via CYBS or field can be provided by merchant in authorization request if calling an external 3DS provider. This field is supported for Cartes Bancaires Fast'R transactions on Credit Mutuel-CIC. Format: YYYYMMDDHHMMSS ")
public String getAuthenticationDate() {
return authenticationDate;
}
public void setAuthenticationDate(String authenticationDate) {
this.authenticationDate = authenticationDate;
}
public Riskv1decisionsConsumerAuthenticationInformation authenticationTransactionId(String authenticationTransactionId) {
this.authenticationTransactionId = authenticationTransactionId;
return this;
}
/**
* Payer authentication transaction identifier passed to link the check enrollment and validate authentication messages.For Rupay,this is passed only in Re-Send OTP usecase. **Note**: Required for Standard integration, Rupay Seamless server to server integration for enroll service. Required for Hybrid integration for validate service.
* @return authenticationTransactionId
**/
@ApiModelProperty(value = "Payer authentication transaction identifier passed to link the check enrollment and validate authentication messages.For Rupay,this is passed only in Re-Send OTP usecase. **Note**: Required for Standard integration, Rupay Seamless server to server integration for enroll service. Required for Hybrid integration for validate service. ")
public String getAuthenticationTransactionId() {
return authenticationTransactionId;
}
public void setAuthenticationTransactionId(String authenticationTransactionId) {
this.authenticationTransactionId = authenticationTransactionId;
}
public Riskv1decisionsConsumerAuthenticationInformation transactionFlowIndicator(Integer transactionFlowIndicator) {
this.transactionFlowIndicator = transactionFlowIndicator;
return this;
}
/**
* This field is only applicable to Rupay and is optional. Merchant will have to pass a valid value from 01 through 07 which indicates the transaction flow. Below are the possible values. 01:NW- Transaction performed at domestic merchant. 02:TW- Transaction performed at domestic merchant along with Token provisioning. 03:IT- Transaction performed at International merchant. 04:AT- Authentication Transaction Only. 05:AW- Authentication transaction for provisioning. 06:DI- Domestic InApp Transaction. 07:II- International InApp transaction. 08:GC- Guest Checkout 09:ST- SI Authentication Transaction only 10:SW- SI Authorization along with token provisioning
* @return transactionFlowIndicator
**/
@ApiModelProperty(value = "This field is only applicable to Rupay and is optional. Merchant will have to pass a valid value from 01 through 07 which indicates the transaction flow. Below are the possible values. 01:NW- Transaction performed at domestic merchant. 02:TW- Transaction performed at domestic merchant along with Token provisioning. 03:IT- Transaction performed at International merchant. 04:AT- Authentication Transaction Only. 05:AW- Authentication transaction for provisioning. 06:DI- Domestic InApp Transaction. 07:II- International InApp transaction. 08:GC- Guest Checkout 09:ST- SI Authentication Transaction only 10:SW- SI Authorization along with token provisioning ")
public Integer getTransactionFlowIndicator() {
return transactionFlowIndicator;
}
public void setTransactionFlowIndicator(Integer transactionFlowIndicator) {
this.transactionFlowIndicator = transactionFlowIndicator;
}
public Riskv1decisionsConsumerAuthenticationInformation challengeCode(String challengeCode) {
this.challengeCode = challengeCode;
return this;
}
/**
* Possible values: - `01`: No preference - `02`: No challenge request - `03`: Challenge requested (3D Secure requestor preference) - `04`: Challenge requested (mandate) - `05`: No challenge requested (transactional risk analysis is already performed) - `06`: No challenge requested (Data share only) - `07`: No challenge requested (strong consumer authentication is already performed) - `08`: No challenge requested (utilize whitelist exemption if no challenge required) - `09`: Challenge requested (whitelist prompt requested if challenge required) **Note** This field will default to `01` on merchant configuration and can be overridden by the merchant. EMV 3D Secure version 2.1.0 supports values `01-04`. Version 2.2.0 supports values `01-09`.
* @return challengeCode
**/
@ApiModelProperty(value = "Possible values: - `01`: No preference - `02`: No challenge request - `03`: Challenge requested (3D Secure requestor preference) - `04`: Challenge requested (mandate) - `05`: No challenge requested (transactional risk analysis is already performed) - `06`: No challenge requested (Data share only) - `07`: No challenge requested (strong consumer authentication is already performed) - `08`: No challenge requested (utilize whitelist exemption if no challenge required) - `09`: Challenge requested (whitelist prompt requested if challenge required) **Note** This field will default to `01` on merchant configuration and can be overridden by the merchant. EMV 3D Secure version 2.1.0 supports values `01-04`. Version 2.2.0 supports values `01-09`. ")
public String getChallengeCode() {
return challengeCode;
}
public void setChallengeCode(String challengeCode) {
this.challengeCode = challengeCode;
}
public Riskv1decisionsConsumerAuthenticationInformation challengeStatus(String challengeStatus) {
this.challengeStatus = challengeStatus;
return this;
}
/**
* The `consumerAuthenticationInformation.challengeCode` indicates the authentication type/level, or challenge, that was presented to the cardholder at checkout by the merchant when calling the Carte Bancaire 3DS servers via CYBS RISK services. It conveys to the issuer the alternative authentication methods that the consumer used.
* @return challengeStatus
**/
@ApiModelProperty(value = "The `consumerAuthenticationInformation.challengeCode` indicates the authentication type/level, or challenge, that was presented to the cardholder at checkout by the merchant when calling the Carte Bancaire 3DS servers via CYBS RISK services. It conveys to the issuer the alternative authentication methods that the consumer used. ")
public String getChallengeStatus() {
return challengeStatus;
}
public void setChallengeStatus(String challengeStatus) {
this.challengeStatus = challengeStatus;
}
public Riskv1decisionsConsumerAuthenticationInformation customerCardAlias(String customerCardAlias) {
this.customerCardAlias = customerCardAlias;
return this;
}
/**
* An alias that uniquely identifies the customer's account and credit card on file. Note This field is required if Tokenization is enabled in the merchant profile settings.
* @return customerCardAlias
**/
@ApiModelProperty(value = "An alias that uniquely identifies the customer's account and credit card on file. Note This field is required if Tokenization is enabled in the merchant profile settings. ")
public String getCustomerCardAlias() {
return customerCardAlias;
}
public void setCustomerCardAlias(String customerCardAlias) {
this.customerCardAlias = customerCardAlias;
}
public Riskv1decisionsConsumerAuthenticationInformation decoupledAuthenticationIndicator(String decoupledAuthenticationIndicator) {
this.decoupledAuthenticationIndicator = decoupledAuthenticationIndicator;
return this;
}
/**
* Indicates whether the 3DS Requestor requests the ACS to utilize Decoupled Authentication and agrees to utilize Decoupled Authentication if the ACS confirms its use. Possible Values: Y - Decoupled Authentication is supported and preferred if challenge is necessary N - Do not use Decoupled Authentication **Default Value**: N
* @return decoupledAuthenticationIndicator
**/
@ApiModelProperty(value = "Indicates whether the 3DS Requestor requests the ACS to utilize Decoupled Authentication and agrees to utilize Decoupled Authentication if the ACS confirms its use. Possible Values: Y - Decoupled Authentication is supported and preferred if challenge is necessary N - Do not use Decoupled Authentication **Default Value**: N ")
public String getDecoupledAuthenticationIndicator() {
return decoupledAuthenticationIndicator;
}
public void setDecoupledAuthenticationIndicator(String decoupledAuthenticationIndicator) {
this.decoupledAuthenticationIndicator = decoupledAuthenticationIndicator;
}
public Riskv1decisionsConsumerAuthenticationInformation decoupledAuthenticationMaxTime(String decoupledAuthenticationMaxTime) {
this.decoupledAuthenticationMaxTime = decoupledAuthenticationMaxTime;
return this;
}
/**
* Indicates the maximum amount of time that the 3DS Requestor will wait for an ACS (Active control server) to provide the results of a Decoupled Authentication transaction (in minutes). Possible Values: Numeric values between 1 and 10080 accepted.
* @return decoupledAuthenticationMaxTime
**/
@ApiModelProperty(value = "Indicates the maximum amount of time that the 3DS Requestor will wait for an ACS (Active control server) to provide the results of a Decoupled Authentication transaction (in minutes). Possible Values: Numeric values between 1 and 10080 accepted. ")
public String getDecoupledAuthenticationMaxTime() {
return decoupledAuthenticationMaxTime;
}
public void setDecoupledAuthenticationMaxTime(String decoupledAuthenticationMaxTime) {
this.decoupledAuthenticationMaxTime = decoupledAuthenticationMaxTime;
}
public Riskv1decisionsConsumerAuthenticationInformation defaultCard(Boolean defaultCard) {
this.defaultCard = defaultCard;
return this;
}
/**
* Indicates that the card being used is the one designated as the primary payment card for purchase. Recommended for Discover ProtectBuy.
* @return defaultCard
**/
@ApiModelProperty(value = "Indicates that the card being used is the one designated as the primary payment card for purchase. Recommended for Discover ProtectBuy. ")
public Boolean DefaultCard() {
return defaultCard;
}
public void setDefaultCard(Boolean defaultCard) {
this.defaultCard = defaultCard;
}
public Riskv1decisionsConsumerAuthenticationInformation deviceChannel(String deviceChannel) {
this.deviceChannel = deviceChannel;
return this;
}
/**
* Determines the channel that the transaction came through. Possible Values: SDK/Browser/3RI. 3RI - 3DS request initiated.
* @return deviceChannel
**/
@ApiModelProperty(required = true, value = "Determines the channel that the transaction came through. Possible Values: SDK/Browser/3RI. 3RI - 3DS request initiated. ")
public String getDeviceChannel() {
return deviceChannel;
}
public void setDeviceChannel(String deviceChannel) {
this.deviceChannel = deviceChannel;
}
public Riskv1decisionsConsumerAuthenticationInformation installmentTotalCount(Integer installmentTotalCount) {
this.installmentTotalCount = installmentTotalCount;
return this;
}
/**
* An integer value greater than 1 indicating the max number of permitted authorizations for installment payments. **Note** This is required if the merchant and cardholder have agreed to installment payments.
* @return installmentTotalCount
**/
@ApiModelProperty(value = "An integer value greater than 1 indicating the max number of permitted authorizations for installment payments. **Note** This is required if the merchant and cardholder have agreed to installment payments. ")
public Integer getInstallmentTotalCount() {
return installmentTotalCount;
}
public void setInstallmentTotalCount(Integer installmentTotalCount) {
this.installmentTotalCount = installmentTotalCount;
}
public Riskv1decisionsConsumerAuthenticationInformation merchantFraudRate(String merchantFraudRate) {
this.merchantFraudRate = merchantFraudRate;
return this;
}
/**
* Calculated by merchants as per PSD2** RTS** (EEA** card fraud divided by all EEA card volumes). Possible Values: 1 = Represents fraud rate <=1 2 = Represents fraud rate >1 and <=6 3 = Represents fraud rate >6 and <=13 4 = Represents fraud rate >13 and <=25 5 = Represents fraud rate >25 EEA** = European Economic Area RTS** = Regulatory Technical Standards PSD2** = Payment Services Directive
* @return merchantFraudRate
**/
@ApiModelProperty(value = "Calculated by merchants as per PSD2** RTS** (EEA** card fraud divided by all EEA card volumes). Possible Values: 1 = Represents fraud rate <=1 2 = Represents fraud rate >1 and <=6 3 = Represents fraud rate >6 and <=13 4 = Represents fraud rate >13 and <=25 5 = Represents fraud rate >25 EEA** = European Economic Area RTS** = Regulatory Technical Standards PSD2** = Payment Services Directive ")
public String getMerchantFraudRate() {
return merchantFraudRate;
}
public void setMerchantFraudRate(String merchantFraudRate) {
this.merchantFraudRate = merchantFraudRate;
}
public Riskv1decisionsConsumerAuthenticationInformation marketingOptIn(Boolean marketingOptIn) {
this.marketingOptIn = marketingOptIn;
return this;
}
/**
* Indicates whether the customer has opted in for marketing offers. Recommended for Discover ProtectBuy.
* @return marketingOptIn
**/
@ApiModelProperty(value = "Indicates whether the customer has opted in for marketing offers. Recommended for Discover ProtectBuy. ")
public Boolean MarketingOptIn() {
return marketingOptIn;
}
public void setMarketingOptIn(Boolean marketingOptIn) {
this.marketingOptIn = marketingOptIn;
}
public Riskv1decisionsConsumerAuthenticationInformation marketingSource(String marketingSource) {
this.marketingSource = marketingSource;
return this;
}
/**
* Indicates origin of the marketing offer. Recommended for Discover ProtectBuy.
* @return marketingSource
**/
@ApiModelProperty(value = "Indicates origin of the marketing offer. Recommended for Discover ProtectBuy. ")
public String getMarketingSource() {
return marketingSource;
}
public void setMarketingSource(String marketingSource) {
this.marketingSource = marketingSource;
}
public Riskv1decisionsConsumerAuthenticationInformation mcc(String mcc) {
this.mcc = mcc;
return this;
}
/**
* Merchant category code. **Important** Required only for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions.
* @return mcc
**/
@ApiModelProperty(value = "Merchant category code. **Important** Required only for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions. ")
public String getMcc() {
return mcc;
}
public void setMcc(String mcc) {
this.mcc = mcc;
}
public Riskv1decisionsConsumerAuthenticationInformation merchantScore(Integer merchantScore) {
this.merchantScore = merchantScore;
return this;
}
/**
* Risk Score provided by merchants. This is specific for CB transactions.
* @return merchantScore
**/
@ApiModelProperty(value = "Risk Score provided by merchants. This is specific for CB transactions. ")
public Integer getMerchantScore() {
return merchantScore;
}
public void setMerchantScore(Integer merchantScore) {
this.merchantScore = merchantScore;
}
public Riskv1decisionsConsumerAuthenticationInformation messageCategory(String messageCategory) {
this.messageCategory = messageCategory;
return this;
}
/**
* Category of the message for a specific use case. Possible values: - `01`: PA- payment authentication - `02`: NPA- non-payment authentication - `03-79`: Reserved for EMVCo future use (values invalid until defined by EMVCo) - `80-99`: Reserved for DS use
* @return messageCategory
**/
@ApiModelProperty(value = "Category of the message for a specific use case. Possible values: - `01`: PA- payment authentication - `02`: NPA- non-payment authentication - `03-79`: Reserved for EMVCo future use (values invalid until defined by EMVCo) - `80-99`: Reserved for DS use ")
public String getMessageCategory() {
return messageCategory;
}
public void setMessageCategory(String messageCategory) {
this.messageCategory = messageCategory;
}
public Riskv1decisionsConsumerAuthenticationInformation npaCode(String npaCode) {
this.npaCode = npaCode;
return this;
}
/**
* Non-Payer Authentication Indicator. Possible values: - `01`: Add card - `02`: Maintain card information - `03`: Cardholder verification for EMV token - `04-80` Reserved for EMVCo - `80-90` Reserved DS
* @return npaCode
**/
@ApiModelProperty(value = "Non-Payer Authentication Indicator. Possible values: - `01`: Add card - `02`: Maintain card information - `03`: Cardholder verification for EMV token - `04-80` Reserved for EMVCo - `80-90` Reserved DS ")
public String getNpaCode() {
return npaCode;
}
public void setNpaCode(String npaCode) {
this.npaCode = npaCode;
}
public Riskv1decisionsConsumerAuthenticationInformation overridePaymentMethod(String overridePaymentMethod) {
this.overridePaymentMethod = overridePaymentMethod;
return this;
}
/**
* Specifies the Brazilian payment account type used for the transaction. This field overrides other payment types that might be specified in the request. Use one of the following values for this field: - `NA`: Not applicable. Do not override other payment types that are specified in the request. - `CR`: Credit card. - `DB`: Debit card. - `VSAVR`: Visa Vale Refeicao - `VSAVA`: Visa Vale Alimentacao **Important** Required only for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions.
* @return overridePaymentMethod
**/
@ApiModelProperty(value = "Specifies the Brazilian payment account type used for the transaction. This field overrides other payment types that might be specified in the request. Use one of the following values for this field: - `NA`: Not applicable. Do not override other payment types that are specified in the request. - `CR`: Credit card. - `DB`: Debit card. - `VSAVR`: Visa Vale Refeicao - `VSAVA`: Visa Vale Alimentacao **Important** Required only for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions. ")
public String getOverridePaymentMethod() {
return overridePaymentMethod;
}
public void setOverridePaymentMethod(String overridePaymentMethod) {
this.overridePaymentMethod = overridePaymentMethod;
}
public Riskv1decisionsConsumerAuthenticationInformation overrideCountryCode(String overrideCountryCode) {
this.overrideCountryCode = overrideCountryCode;
return this;
}
/**
* Two-character [ISO Standard Country Codes](https://developer.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf)..
* @return overrideCountryCode
**/
@ApiModelProperty(value = "Two-character [ISO Standard Country Codes](https://developer.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf).. ")
public String getOverrideCountryCode() {
return overrideCountryCode;
}
public void setOverrideCountryCode(String overrideCountryCode) {
this.overrideCountryCode = overrideCountryCode;
}
public Riskv1decisionsConsumerAuthenticationInformation priorAuthenticationData(String priorAuthenticationData) {
this.priorAuthenticationData = priorAuthenticationData;
return this;
}
/**
* This field carry data that the ACS can use to verify the authentication process.
* @return priorAuthenticationData
**/
@ApiModelProperty(value = "This field carry data that the ACS can use to verify the authentication process. ")
public String getPriorAuthenticationData() {
return priorAuthenticationData;
}
public void setPriorAuthenticationData(String priorAuthenticationData) {
this.priorAuthenticationData = priorAuthenticationData;
}
public Riskv1decisionsConsumerAuthenticationInformation priorAuthenticationMethod(String priorAuthenticationMethod) {
this.priorAuthenticationMethod = priorAuthenticationMethod;
return this;
}
/**
* Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. 01 - Frictionless authentication occurred by ACS 02 - Cardholder challenge occurred by ACS 03 - AVS verified 04 - Other issuer methods 05-79 - Reserved for EMVCo future use (values invalid until defined by EMVCo) 80-99 - Reserved for DS use
* @return priorAuthenticationMethod
**/
@ApiModelProperty(value = "Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. 01 - Frictionless authentication occurred by ACS 02 - Cardholder challenge occurred by ACS 03 - AVS verified 04 - Other issuer methods 05-79 - Reserved for EMVCo future use (values invalid until defined by EMVCo) 80-99 - Reserved for DS use ")
public String getPriorAuthenticationMethod() {
return priorAuthenticationMethod;
}
public void setPriorAuthenticationMethod(String priorAuthenticationMethod) {
this.priorAuthenticationMethod = priorAuthenticationMethod;
}
public Riskv1decisionsConsumerAuthenticationInformation priorAuthenticationReferenceId(String priorAuthenticationReferenceId) {
this.priorAuthenticationReferenceId = priorAuthenticationReferenceId;
return this;
}
/**
* This data element contains a ACS Transaction ID for a prior authenticated transaction. For example, the first recurring transaction that was authenticated with the cardholder
* @return priorAuthenticationReferenceId
**/
@ApiModelProperty(value = "This data element contains a ACS Transaction ID for a prior authenticated transaction. For example, the first recurring transaction that was authenticated with the cardholder ")
public String getPriorAuthenticationReferenceId() {
return priorAuthenticationReferenceId;
}
public void setPriorAuthenticationReferenceId(String priorAuthenticationReferenceId) {
this.priorAuthenticationReferenceId = priorAuthenticationReferenceId;
}
public Riskv1decisionsConsumerAuthenticationInformation priorAuthenticationTime(String priorAuthenticationTime) {
this.priorAuthenticationTime = priorAuthenticationTime;
return this;
}
/**
* Date and time in UTC of the prior cardholder authentication. Format – YYYYMMDDHHMM
* @return priorAuthenticationTime
**/
@ApiModelProperty(value = "Date and time in UTC of the prior cardholder authentication. Format – YYYYMMDDHHMM ")
public String getPriorAuthenticationTime() {
return priorAuthenticationTime;
}
public void setPriorAuthenticationTime(String priorAuthenticationTime) {
this.priorAuthenticationTime = priorAuthenticationTime;
}
public Riskv1decisionsConsumerAuthenticationInformation productCode(String productCode) {
this.productCode = productCode;
return this;
}
/**
* Specifies the product code, which designates the type of transaction. Specify one of the following values for this field: - AIR: Airline purchase Important Required for American Express SafeKey (U.S.). - `ACC`: Accommodation Rental - `ACF`: Account funding - `CHA`: Check acceptance - `DIG`: Digital Goods - `DSP`: Cash Dispensing - `GAS`: Fuel - `GEN`: General Retail - `LUX`: Luxury Retail - `PAL`: Prepaid activation and load - `PHY`: Goods or services purchase - `QCT`: Quasi-cash transaction - `REN`: Car Rental - `RES`: Restaurant - `SVC`: Services - `TBD`: Other - `TRA`: Travel **Important** Required for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions.
* @return productCode
**/
@ApiModelProperty(value = "Specifies the product code, which designates the type of transaction. Specify one of the following values for this field: - AIR: Airline purchase Important Required for American Express SafeKey (U.S.). - `ACC`: Accommodation Rental - `ACF`: Account funding - `CHA`: Check acceptance - `DIG`: Digital Goods - `DSP`: Cash Dispensing - `GAS`: Fuel - `GEN`: General Retail - `LUX`: Luxury Retail - `PAL`: Prepaid activation and load - `PHY`: Goods or services purchase - `QCT`: Quasi-cash transaction - `REN`: Car Rental - `RES`: Restaurant - `SVC`: Services - `TBD`: Other - `TRA`: Travel **Important** Required for Visa Secure transactions in Brazil. Do not use this request field for any other types of transactions. ")
public String getProductCode() {
return productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public Riskv1decisionsConsumerAuthenticationInformation returnUrl(String returnUrl) {
this.returnUrl = returnUrl;
return this;
}
/**
* The URL of the merchant's return page. CyberSource adds this return URL to the step-up JWT and returns it in the response of the Payer Authentication enrollment call. The merchant's return URL page serves as a listening URL. Once the bank session completes, the merchant receives a POST to their URL. This response contains the completed bank session's transactionId. The merchant's return page should capture the transaction ID and send it in the Payer Authentication validation call.
* @return returnUrl
**/
@ApiModelProperty(value = "The URL of the merchant's return page. CyberSource adds this return URL to the step-up JWT and returns it in the response of the Payer Authentication enrollment call. The merchant's return URL page serves as a listening URL. Once the bank session completes, the merchant receives a POST to their URL. This response contains the completed bank session's transactionId. The merchant's return page should capture the transaction ID and send it in the Payer Authentication validation call. ")
public String getReturnUrl() {
return returnUrl;
}
public void setReturnUrl(String returnUrl) {
this.returnUrl = returnUrl;
}
public Riskv1decisionsConsumerAuthenticationInformation requestorId(String requestorId) {
this.requestorId = requestorId;
return this;
}
/**
* Cardinal's directory server assigned 3DS Requestor ID value
* @return requestorId
**/
@ApiModelProperty(value = "Cardinal's directory server assigned 3DS Requestor ID value")
public String getRequestorId() {
return requestorId;
}
public void setRequestorId(String requestorId) {
this.requestorId = requestorId;
}
public Riskv1decisionsConsumerAuthenticationInformation requestorInitiatedAuthenticationIndicator(String requestorInitiatedAuthenticationIndicator) {
this.requestorInitiatedAuthenticationIndicator = requestorInitiatedAuthenticationIndicator;
return this;
}
/**
* Indicates the type of 3RI request. Possible Values: 01 - Recurring transaction 02 - Installment transaction 03 - Add card 04 - Maintain card 05 - Account verification 06 - Split/delayed shipment 07 - Top-up 08 - Mail Order 09 - Telephone Order 10 - Whitelist status check 11 - Other payment
* @return requestorInitiatedAuthenticationIndicator
**/
@ApiModelProperty(value = "Indicates the type of 3RI request. Possible Values: 01 - Recurring transaction 02 - Installment transaction 03 - Add card 04 - Maintain card 05 - Account verification 06 - Split/delayed shipment 07 - Top-up 08 - Mail Order 09 - Telephone Order 10 - Whitelist status check 11 - Other payment ")
public String getRequestorInitiatedAuthenticationIndicator() {
return requestorInitiatedAuthenticationIndicator;
}
public void setRequestorInitiatedAuthenticationIndicator(String requestorInitiatedAuthenticationIndicator) {
this.requestorInitiatedAuthenticationIndicator = requestorInitiatedAuthenticationIndicator;
}
public Riskv1decisionsConsumerAuthenticationInformation requestorName(String requestorName) {
this.requestorName = requestorName;
return this;
}
/**
* Cardinal's directory server assigned 3DS Requestor Name value
* @return requestorName
**/
@ApiModelProperty(value = "Cardinal's directory server assigned 3DS Requestor Name value")
public String getRequestorName() {
return requestorName;
}
public void setRequestorName(String requestorName) {
this.requestorName = requestorName;
}
public Riskv1decisionsConsumerAuthenticationInformation referenceId(String referenceId) {
this.referenceId = referenceId;
return this;
}
/**
* Reference ID that corresponds to the device fingerprinting data that was collected previously. Note Required for Hybrid integration.
* @return referenceId
**/
@ApiModelProperty(value = "Reference ID that corresponds to the device fingerprinting data that was collected previously. Note Required for Hybrid integration. ")
public String getReferenceId() {
return referenceId;
}
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
public Riskv1decisionsConsumerAuthenticationInformation sdkMaxTimeout(String sdkMaxTimeout) {
this.sdkMaxTimeout = sdkMaxTimeout;
return this;
}
/**
* This field indicates the maximum amount of time for all 3DS 2.0 messages to be communicated between all components (in minutes). Possible Values: Greater than or equal to 05 (05 is the minimum timeout to set) Cardinal Default is set to 15 NOTE: This field is a required 3DS 2.0 field and Cardinal sends in a default of 15 if nothing is passed
* @return sdkMaxTimeout
**/
@ApiModelProperty(value = "This field indicates the maximum amount of time for all 3DS 2.0 messages to be communicated between all components (in minutes). Possible Values: Greater than or equal to 05 (05 is the minimum timeout to set) Cardinal Default is set to 15 NOTE: This field is a required 3DS 2.0 field and Cardinal sends in a default of 15 if nothing is passed ")
public String getSdkMaxTimeout() {
return sdkMaxTimeout;
}
public void setSdkMaxTimeout(String sdkMaxTimeout) {
this.sdkMaxTimeout = sdkMaxTimeout;
}
public Riskv1decisionsConsumerAuthenticationInformation secureCorporatePaymentIndicator(String secureCorporatePaymentIndicator) {
this.secureCorporatePaymentIndicator = secureCorporatePaymentIndicator;
return this;
}
/**
* Indicates dedicated payment processes and procedures were used, potential secure corporate payment exemption applies. Possible Values : 0/1
* @return secureCorporatePaymentIndicator
**/
@ApiModelProperty(value = "Indicates dedicated payment processes and procedures were used, potential secure corporate payment exemption applies. Possible Values : 0/1 ")
public String getSecureCorporatePaymentIndicator() {
return secureCorporatePaymentIndicator;
}
public void setSecureCorporatePaymentIndicator(String secureCorporatePaymentIndicator) {
this.secureCorporatePaymentIndicator = secureCorporatePaymentIndicator;
}
public Riskv1decisionsConsumerAuthenticationInformation transactionMode(String transactionMode) {
this.transactionMode = transactionMode;
return this;
}
/**
* Transaction mode identifier. Identifies the channel from which the transaction originates. Possible values: - `M`: MOTO (Mail Order Telephone Order) - `R`: Retail - `S`: eCommerce - `P`: Mobile Device - `T`: Tablet
* @return transactionMode
**/
@ApiModelProperty(value = "Transaction mode identifier. Identifies the channel from which the transaction originates. Possible values: - `M`: MOTO (Mail Order Telephone Order) - `R`: Retail - `S`: eCommerce - `P`: Mobile Device - `T`: Tablet ")
public String getTransactionMode() {
return transactionMode;
}
public void setTransactionMode(String transactionMode) {
this.transactionMode = transactionMode;
}
public Riskv1decisionsConsumerAuthenticationInformation whiteListStatus(String whiteListStatus) {
this.whiteListStatus = whiteListStatus;
return this;
}
/**
* Enables the communication of trusted beneficiary/whitelist status between the ACS, the DS and the 3DS Requestor. Possible Values: Y - 3DS Requestor is whitelisted by cardholder N - 3DS Requestor is not whitelisted by cardholder
* @return whiteListStatus
**/
@ApiModelProperty(value = "Enables the communication of trusted beneficiary/whitelist status between the ACS, the DS and the 3DS Requestor. Possible Values: Y - 3DS Requestor is whitelisted by cardholder N - 3DS Requestor is not whitelisted by cardholder ")
public String getWhiteListStatus() {
return whiteListStatus;
}
public void setWhiteListStatus(String whiteListStatus) {
this.whiteListStatus = whiteListStatus;
}
public Riskv1decisionsConsumerAuthenticationInformation scoreRequest(Integer scoreRequest) {
this.scoreRequest = scoreRequest;
return this;
}
/**
* Risk Assessment from Mastercard. This is to be sent by merchant if they would like to request a score
* @return scoreRequest
**/
@ApiModelProperty(value = "Risk Assessment from Mastercard. This is to be sent by merchant if they would like to request a score")
public Integer getScoreRequest() {
return scoreRequest;
}
public void setScoreRequest(Integer scoreRequest) {
this.scoreRequest = scoreRequest;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Riskv1decisionsConsumerAuthenticationInformation riskv1decisionsConsumerAuthenticationInformation = (Riskv1decisionsConsumerAuthenticationInformation) o;
return Objects.equals(this.strongAuthentication, riskv1decisionsConsumerAuthenticationInformation.strongAuthentication) &&
Objects.equals(this.acsWindowSize, riskv1decisionsConsumerAuthenticationInformation.acsWindowSize) &&
Objects.equals(this.alternateAuthenticationData, riskv1decisionsConsumerAuthenticationInformation.alternateAuthenticationData) &&
Objects.equals(this.alternateAuthenticationDate, riskv1decisionsConsumerAuthenticationInformation.alternateAuthenticationDate) &&
Objects.equals(this.alternateAuthenticationMethod, riskv1decisionsConsumerAuthenticationInformation.alternateAuthenticationMethod) &&
Objects.equals(this.authenticationDate, riskv1decisionsConsumerAuthenticationInformation.authenticationDate) &&
Objects.equals(this.authenticationTransactionId, riskv1decisionsConsumerAuthenticationInformation.authenticationTransactionId) &&
Objects.equals(this.transactionFlowIndicator, riskv1decisionsConsumerAuthenticationInformation.transactionFlowIndicator) &&
Objects.equals(this.challengeCode, riskv1decisionsConsumerAuthenticationInformation.challengeCode) &&
Objects.equals(this.challengeStatus, riskv1decisionsConsumerAuthenticationInformation.challengeStatus) &&
Objects.equals(this.customerCardAlias, riskv1decisionsConsumerAuthenticationInformation.customerCardAlias) &&
Objects.equals(this.decoupledAuthenticationIndicator, riskv1decisionsConsumerAuthenticationInformation.decoupledAuthenticationIndicator) &&
Objects.equals(this.decoupledAuthenticationMaxTime, riskv1decisionsConsumerAuthenticationInformation.decoupledAuthenticationMaxTime) &&
Objects.equals(this.defaultCard, riskv1decisionsConsumerAuthenticationInformation.defaultCard) &&
Objects.equals(this.deviceChannel, riskv1decisionsConsumerAuthenticationInformation.deviceChannel) &&
Objects.equals(this.installmentTotalCount, riskv1decisionsConsumerAuthenticationInformation.installmentTotalCount) &&
Objects.equals(this.merchantFraudRate, riskv1decisionsConsumerAuthenticationInformation.merchantFraudRate) &&
Objects.equals(this.marketingOptIn, riskv1decisionsConsumerAuthenticationInformation.marketingOptIn) &&
Objects.equals(this.marketingSource, riskv1decisionsConsumerAuthenticationInformation.marketingSource) &&
Objects.equals(this.mcc, riskv1decisionsConsumerAuthenticationInformation.mcc) &&
Objects.equals(this.merchantScore, riskv1decisionsConsumerAuthenticationInformation.merchantScore) &&
Objects.equals(this.messageCategory, riskv1decisionsConsumerAuthenticationInformation.messageCategory) &&
Objects.equals(this.npaCode, riskv1decisionsConsumerAuthenticationInformation.npaCode) &&
Objects.equals(this.overridePaymentMethod, riskv1decisionsConsumerAuthenticationInformation.overridePaymentMethod) &&
Objects.equals(this.overrideCountryCode, riskv1decisionsConsumerAuthenticationInformation.overrideCountryCode) &&
Objects.equals(this.priorAuthenticationData, riskv1decisionsConsumerAuthenticationInformation.priorAuthenticationData) &&
Objects.equals(this.priorAuthenticationMethod, riskv1decisionsConsumerAuthenticationInformation.priorAuthenticationMethod) &&
Objects.equals(this.priorAuthenticationReferenceId, riskv1decisionsConsumerAuthenticationInformation.priorAuthenticationReferenceId) &&
Objects.equals(this.priorAuthenticationTime, riskv1decisionsConsumerAuthenticationInformation.priorAuthenticationTime) &&
Objects.equals(this.productCode, riskv1decisionsConsumerAuthenticationInformation.productCode) &&
Objects.equals(this.returnUrl, riskv1decisionsConsumerAuthenticationInformation.returnUrl) &&
Objects.equals(this.requestorId, riskv1decisionsConsumerAuthenticationInformation.requestorId) &&
Objects.equals(this.requestorInitiatedAuthenticationIndicator, riskv1decisionsConsumerAuthenticationInformation.requestorInitiatedAuthenticationIndicator) &&
Objects.equals(this.requestorName, riskv1decisionsConsumerAuthenticationInformation.requestorName) &&
Objects.equals(this.referenceId, riskv1decisionsConsumerAuthenticationInformation.referenceId) &&
Objects.equals(this.sdkMaxTimeout, riskv1decisionsConsumerAuthenticationInformation.sdkMaxTimeout) &&
Objects.equals(this.secureCorporatePaymentIndicator, riskv1decisionsConsumerAuthenticationInformation.secureCorporatePaymentIndicator) &&
Objects.equals(this.transactionMode, riskv1decisionsConsumerAuthenticationInformation.transactionMode) &&
Objects.equals(this.whiteListStatus, riskv1decisionsConsumerAuthenticationInformation.whiteListStatus) &&
Objects.equals(this.scoreRequest, riskv1decisionsConsumerAuthenticationInformation.scoreRequest);
}
@Override
public int hashCode() {
return Objects.hash(strongAuthentication, acsWindowSize, alternateAuthenticationData, alternateAuthenticationDate, alternateAuthenticationMethod, authenticationDate, authenticationTransactionId, transactionFlowIndicator, challengeCode, challengeStatus, customerCardAlias, decoupledAuthenticationIndicator, decoupledAuthenticationMaxTime, defaultCard, deviceChannel, installmentTotalCount, merchantFraudRate, marketingOptIn, marketingSource, mcc, merchantScore, messageCategory, npaCode, overridePaymentMethod, overrideCountryCode, priorAuthenticationData, priorAuthenticationMethod, priorAuthenticationReferenceId, priorAuthenticationTime, productCode, returnUrl, requestorId, requestorInitiatedAuthenticationIndicator, requestorName, referenceId, sdkMaxTimeout, secureCorporatePaymentIndicator, transactionMode, whiteListStatus, scoreRequest);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Riskv1decisionsConsumerAuthenticationInformation {\n");
if (strongAuthentication != null) sb.append(" strongAuthentication: ").append(toIndentedString(strongAuthentication)).append("\n");
if (acsWindowSize != null) sb.append(" acsWindowSize: ").append(toIndentedString(acsWindowSize)).append("\n");
if (alternateAuthenticationData != null) sb.append(" alternateAuthenticationData: ").append(toIndentedString(alternateAuthenticationData)).append("\n");
if (alternateAuthenticationDate != null) sb.append(" alternateAuthenticationDate: ").append(toIndentedString(alternateAuthenticationDate)).append("\n");
if (alternateAuthenticationMethod != null) sb.append(" alternateAuthenticationMethod: ").append(toIndentedString(alternateAuthenticationMethod)).append("\n");
if (authenticationDate != null) sb.append(" authenticationDate: ").append(toIndentedString(authenticationDate)).append("\n");
if (authenticationTransactionId != null) sb.append(" authenticationTransactionId: ").append(toIndentedString(authenticationTransactionId)).append("\n");
if (transactionFlowIndicator != null) sb.append(" transactionFlowIndicator: ").append(toIndentedString(transactionFlowIndicator)).append("\n");
if (challengeCode != null) sb.append(" challengeCode: ").append(toIndentedString(challengeCode)).append("\n");
if (challengeStatus != null) sb.append(" challengeStatus: ").append(toIndentedString(challengeStatus)).append("\n");
if (customerCardAlias != null) sb.append(" customerCardAlias: ").append(toIndentedString(customerCardAlias)).append("\n");
if (decoupledAuthenticationIndicator != null) sb.append(" decoupledAuthenticationIndicator: ").append(toIndentedString(decoupledAuthenticationIndicator)).append("\n");
if (decoupledAuthenticationMaxTime != null) sb.append(" decoupledAuthenticationMaxTime: ").append(toIndentedString(decoupledAuthenticationMaxTime)).append("\n");
if (defaultCard != null) sb.append(" defaultCard: ").append(toIndentedString(defaultCard)).append("\n");
if (deviceChannel != null) sb.append(" deviceChannel: ").append(toIndentedString(deviceChannel)).append("\n");
if (installmentTotalCount != null) sb.append(" installmentTotalCount: ").append(toIndentedString(installmentTotalCount)).append("\n");
if (merchantFraudRate != null) sb.append(" merchantFraudRate: ").append(toIndentedString(merchantFraudRate)).append("\n");
if (marketingOptIn != null) sb.append(" marketingOptIn: ").append(toIndentedString(marketingOptIn)).append("\n");
if (marketingSource != null) sb.append(" marketingSource: ").append(toIndentedString(marketingSource)).append("\n");
if (mcc != null) sb.append(" mcc: ").append(toIndentedString(mcc)).append("\n");
if (merchantScore != null) sb.append(" merchantScore: ").append(toIndentedString(merchantScore)).append("\n");
if (messageCategory != null) sb.append(" messageCategory: ").append(toIndentedString(messageCategory)).append("\n");
if (npaCode != null) sb.append(" npaCode: ").append(toIndentedString(npaCode)).append("\n");
if (overridePaymentMethod != null) sb.append(" overridePaymentMethod: ").append(toIndentedString(overridePaymentMethod)).append("\n");
if (overrideCountryCode != null) sb.append(" overrideCountryCode: ").append(toIndentedString(overrideCountryCode)).append("\n");
if (priorAuthenticationData != null) sb.append(" priorAuthenticationData: ").append(toIndentedString(priorAuthenticationData)).append("\n");
if (priorAuthenticationMethod != null) sb.append(" priorAuthenticationMethod: ").append(toIndentedString(priorAuthenticationMethod)).append("\n");
if (priorAuthenticationReferenceId != null) sb.append(" priorAuthenticationReferenceId: ").append(toIndentedString(priorAuthenticationReferenceId)).append("\n");
if (priorAuthenticationTime != null) sb.append(" priorAuthenticationTime: ").append(toIndentedString(priorAuthenticationTime)).append("\n");
if (productCode != null) sb.append(" productCode: ").append(toIndentedString(productCode)).append("\n");
if (returnUrl != null) sb.append(" returnUrl: ").append(toIndentedString(returnUrl)).append("\n");
if (requestorId != null) sb.append(" requestorId: ").append(toIndentedString(requestorId)).append("\n");
if (requestorInitiatedAuthenticationIndicator != null) sb.append(" requestorInitiatedAuthenticationIndicator: ").append(toIndentedString(requestorInitiatedAuthenticationIndicator)).append("\n");
if (requestorName != null) sb.append(" requestorName: ").append(toIndentedString(requestorName)).append("\n");
if (referenceId != null) sb.append(" referenceId: ").append(toIndentedString(referenceId)).append("\n");
if (sdkMaxTimeout != null) sb.append(" sdkMaxTimeout: ").append(toIndentedString(sdkMaxTimeout)).append("\n");
if (secureCorporatePaymentIndicator != null) sb.append(" secureCorporatePaymentIndicator: ").append(toIndentedString(secureCorporatePaymentIndicator)).append("\n");
if (transactionMode != null) sb.append(" transactionMode: ").append(toIndentedString(transactionMode)).append("\n");
if (whiteListStatus != null) sb.append(" whiteListStatus: ").append(toIndentedString(whiteListStatus)).append("\n");
if (scoreRequest != null) sb.append(" scoreRequest: ").append(toIndentedString(scoreRequest)).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