All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payline.ws.model.ThreeDSInfo Maven / Gradle / Ivy


package com.payline.ws.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *                         This element contains information about 3DS.
 *                     
 * 
 * 

Java class for threeDSInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="threeDSInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="challengeInd" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="threeDSReqPriorAuthData" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="threeDSReqPriorAuthMethod" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="threeDSReqPriorAuthTimestamp" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="browser" type="{http://obj.ws.payline.experian.com}browser"/>
 *         <element name="sdk" type="{http://obj.ws.payline.experian.com}sdk"/>
 *         <element name="threeDSMethodNotificationURL" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="threeDSMethodResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="challengeWindowSize" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "threeDSInfo", namespace = "http://obj.ws.payline.experian.com", propOrder = { "challengeInd", "threeDSReqPriorAuthData", "threeDSReqPriorAuthMethod", "threeDSReqPriorAuthTimestamp", "browser", "sdk", "threeDSMethodNotificationURL", "threeDSMethodResult", "challengeWindowSize" }) public class ThreeDSInfo { @XmlElement(required = true, nillable = true) protected String challengeInd; @XmlElement(required = true, nillable = true) protected String threeDSReqPriorAuthData; @XmlElement(required = true, nillable = true) protected String threeDSReqPriorAuthMethod; @XmlElement(required = true, nillable = true) protected String threeDSReqPriorAuthTimestamp; @XmlElement(required = true, nillable = true) protected Browser browser; @XmlElement(required = true, nillable = true) protected Sdk sdk; @XmlElement(required = true, nillable = true) protected String threeDSMethodNotificationURL; @XmlElement(required = true, nillable = true) protected String threeDSMethodResult; @XmlElement(required = true, nillable = true) protected String challengeWindowSize; /** * Gets the value of the challengeInd property. * * @return * possible object is * {@link String } * */ public String getChallengeInd() { return challengeInd; } /** * Sets the value of the challengeInd property. * * @param value * allowed object is * {@link String } * */ public void setChallengeInd(String value) { this.challengeInd = value; } /** * Gets the value of the threeDSReqPriorAuthData property. * * @return * possible object is * {@link String } * */ public String getThreeDSReqPriorAuthData() { return threeDSReqPriorAuthData; } /** * Sets the value of the threeDSReqPriorAuthData property. * * @param value * allowed object is * {@link String } * */ public void setThreeDSReqPriorAuthData(String value) { this.threeDSReqPriorAuthData = value; } /** * Gets the value of the threeDSReqPriorAuthMethod property. * * @return * possible object is * {@link String } * */ public String getThreeDSReqPriorAuthMethod() { return threeDSReqPriorAuthMethod; } /** * Sets the value of the threeDSReqPriorAuthMethod property. * * @param value * allowed object is * {@link String } * */ public void setThreeDSReqPriorAuthMethod(String value) { this.threeDSReqPriorAuthMethod = value; } /** * Gets the value of the threeDSReqPriorAuthTimestamp property. * * @return * possible object is * {@link String } * */ public String getThreeDSReqPriorAuthTimestamp() { return threeDSReqPriorAuthTimestamp; } /** * Sets the value of the threeDSReqPriorAuthTimestamp property. * * @param value * allowed object is * {@link String } * */ public void setThreeDSReqPriorAuthTimestamp(String value) { this.threeDSReqPriorAuthTimestamp = value; } /** * Gets the value of the browser property. * * @return * possible object is * {@link Browser } * */ public Browser getBrowser() { return browser; } /** * Sets the value of the browser property. * * @param value * allowed object is * {@link Browser } * */ public void setBrowser(Browser value) { this.browser = value; } /** * Gets the value of the sdk property. * * @return * possible object is * {@link Sdk } * */ public Sdk getSdk() { return sdk; } /** * Sets the value of the sdk property. * * @param value * allowed object is * {@link Sdk } * */ public void setSdk(Sdk value) { this.sdk = value; } /** * Gets the value of the threeDSMethodNotificationURL property. * * @return * possible object is * {@link String } * */ public String getThreeDSMethodNotificationURL() { return threeDSMethodNotificationURL; } /** * Sets the value of the threeDSMethodNotificationURL property. * * @param value * allowed object is * {@link String } * */ public void setThreeDSMethodNotificationURL(String value) { this.threeDSMethodNotificationURL = value; } /** * Gets the value of the threeDSMethodResult property. * * @return * possible object is * {@link String } * */ public String getThreeDSMethodResult() { return threeDSMethodResult; } /** * Sets the value of the threeDSMethodResult property. * * @param value * allowed object is * {@link String } * */ public void setThreeDSMethodResult(String value) { this.threeDSMethodResult = value; } /** * Gets the value of the challengeWindowSize property. * * @return * possible object is * {@link String } * */ public String getChallengeWindowSize() { return challengeWindowSize; } /** * Sets the value of the challengeWindowSize property. * * @param value * allowed object is * {@link String } * */ public void setChallengeWindowSize(String value) { this.challengeWindowSize = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy