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

com.adyen.model.ThreeDSecureData Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
/**
 *                       ######
 *                       ######
 * ############    ####( ######  #####. ######  ############   ############
 * #############  #####( ######  #####. ######  #############  #############
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
 * #############  #############  #############  #############  #####  ######
 *  ############   ############  #############   ############  #####  ######
 *                                      ######
 *                               #############
 *                               ############
 *
 * Adyen Java API Library
 *
 * Copyright (c) 2017 Adyen B.V.
 * This file is open source and available under the MIT license.
 * See the LICENSE file for more info.
 */
package com.adyen.model;

import java.util.Objects;
import com.google.gson.annotations.SerializedName;

/**
 * ThreeDSecureData
 */
public class ThreeDSecureData {
  @SerializedName("cavvAlgorithm")
  private String cavvAlgorithm = null;

  /**
   * the enrollment response from the 3D directory server
   */
  public enum DirectoryResponseEnum {
    @SerializedName("Y")
    Y("Y"),
    
    @SerializedName("N")
    N("N"),
    
    @SerializedName("U")
    U("U"),
    
    @SerializedName("E")
    E("E");

    private String value;

    DirectoryResponseEnum(String value) {
      this.value = value;
    }

    @Override
    public String toString() {
      return String.valueOf(value);
    }
  }

  @SerializedName("directoryResponse")
  private DirectoryResponseEnum directoryResponse = null;

  /**
   * the authentication response if the shopper was redirected
   */
  public enum AuthenticationResponseEnum {
    @SerializedName("Y")
    Y("Y"),
    
    @SerializedName("N")
    N("N"),
    
    @SerializedName("U")
    U("U"),
    
    @SerializedName("A")
    A("A");

    private String value;

    AuthenticationResponseEnum(String value) {
      this.value = value;
    }

    @Override
    public String toString() {
      return String.valueOf(value);
    }
  }

  @SerializedName("authenticationResponse")
  private AuthenticationResponseEnum authenticationResponse = null;

  @SerializedName("xid")
  private String xid = null;

  @SerializedName("cavv")
  private String cavv = null;

  @SerializedName("eci")
  private String eci = null;

  public ThreeDSecureData cavvAlgorithm(String cavvAlgorithm) {
    this.cavvAlgorithm = cavvAlgorithm;
    return this;
  }

   /**
   * the CAVV algorithm used
   * @return cavvAlgorithm
  **/
  public String getCavvAlgorithm() {
    return cavvAlgorithm;
  }

  public void setCavvAlgorithm(String cavvAlgorithm) {
    this.cavvAlgorithm = cavvAlgorithm;
  }

  public ThreeDSecureData directoryResponse(DirectoryResponseEnum directoryResponse) {
    this.directoryResponse = directoryResponse;
    return this;
  }

   /**
   * the enrollment response from the 3D directory server
   * @return directoryResponse
  **/
  public DirectoryResponseEnum getDirectoryResponse() {
    return directoryResponse;
  }

  public void setDirectoryResponse(DirectoryResponseEnum directoryResponse) {
    this.directoryResponse = directoryResponse;
  }

  public ThreeDSecureData authenticationResponse(AuthenticationResponseEnum authenticationResponse) {
    this.authenticationResponse = authenticationResponse;
    return this;
  }

   /**
   * the authentication response if the shopper was redirected
   * @return authenticationResponse
  **/
  public AuthenticationResponseEnum getAuthenticationResponse() {
    return authenticationResponse;
  }

  public void setAuthenticationResponse(AuthenticationResponseEnum authenticationResponse) {
    this.authenticationResponse = authenticationResponse;
  }

  public ThreeDSecureData xid(String xid) {
    this.xid = xid;
    return this;
  }

   /**
   * the transaction identifier (base64 encoded, 20 bytes in decoded form)
   * @return xid
  **/
  public String getXid() {
    return xid;
  }

  public void setXid(String xid) {
    this.xid = xid;
  }

  public ThreeDSecureData cavv(String cavv) {
    this.cavv = cavv;
    return this;
  }

   /**
   * the cardholder authentication value (base64 encoded, 20 bytes in decoded form)
   * @return cavv
  **/
  public String getCavv() {
    return cavv;
  }

  public void setCavv(String cavv) {
    this.cavv = cavv;
  }

  public ThreeDSecureData eci(String eci) {
    this.eci = eci;
    return this;
  }

   /**
   * the electronic commerce indicator
   * @return eci
  **/
  public String getEci() {
    return eci;
  }

  public void setEci(String eci) {
    this.eci = eci;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ThreeDSecureData threeDSecureData = (ThreeDSecureData) o;
    return Objects.equals(this.cavvAlgorithm, threeDSecureData.cavvAlgorithm) &&
        Objects.equals(this.directoryResponse, threeDSecureData.directoryResponse) &&
        Objects.equals(this.authenticationResponse, threeDSecureData.authenticationResponse) &&
        Objects.equals(this.xid, threeDSecureData.xid) &&
        Objects.equals(this.cavv, threeDSecureData.cavv) &&
        Objects.equals(this.eci, threeDSecureData.eci);
  }

  @Override
  public int hashCode() {
    return Objects.hash(cavvAlgorithm, directoryResponse, authenticationResponse, xid, cavv, eci);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ThreeDSecureData {\n");

    sb.append("    cavvAlgorithm: ").append(toIndentedString(cavvAlgorithm)).append("\n");
    sb.append("    directoryResponse: ").append(toIndentedString(directoryResponse)).append("\n");
    sb.append("    authenticationResponse: ").append(toIndentedString(authenticationResponse)).append("\n");
    sb.append("    xid: ").append(toIndentedString(xid)).append("\n");
    sb.append("    cavv: ").append(toIndentedString(cavv)).append("\n");
    sb.append("    eci: ").append(toIndentedString(eci)).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(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
  
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy