com.conekta.model.OrderNextActionResponseRedirectToUrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ct-conekta-java Show documentation
Show all versions of ct-conekta-java Show documentation
This is a java library that allows interaction with https://api.conekta.io API.
/*
* Conekta API
* Conekta sdk
*
* The version of the OpenAPI document: 2.1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.conekta.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.net.URI;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* contains the following attributes that will guide to continue the flow
*/
@JsonPropertyOrder({
OrderNextActionResponseRedirectToUrl.JSON_PROPERTY_URL,
OrderNextActionResponseRedirectToUrl.JSON_PROPERTY_RETURN_URL
})
@JsonTypeName("order_next_action_response_redirect_to_url")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class OrderNextActionResponseRedirectToUrl {
public static final String JSON_PROPERTY_URL = "url";
private URI url;
public static final String JSON_PROPERTY_RETURN_URL = "return_url";
private URI returnUrl;
public OrderNextActionResponseRedirectToUrl() {
}
public OrderNextActionResponseRedirectToUrl url(URI url) {
this.url = url;
return this;
}
/**
* pay.conekta.com/{id} Indicates the url of the Conekta component to authenticate the flow through 3DS2.
* @return url
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public URI getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUrl(URI url) {
this.url = url;
}
public OrderNextActionResponseRedirectToUrl returnUrl(URI returnUrl) {
this.returnUrl = returnUrl;
return this;
}
/**
* Indicates the url to which the 3DS2 flow returns at the end, when the integration is redirected.
* @return returnUrl
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RETURN_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public URI getReturnUrl() {
return returnUrl;
}
@JsonProperty(JSON_PROPERTY_RETURN_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReturnUrl(URI returnUrl) {
this.returnUrl = returnUrl;
}
/**
* Return true if this order_next_action_response_redirect_to_url object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OrderNextActionResponseRedirectToUrl orderNextActionResponseRedirectToUrl = (OrderNextActionResponseRedirectToUrl) o;
return Objects.equals(this.url, orderNextActionResponseRedirectToUrl.url) &&
Objects.equals(this.returnUrl, orderNextActionResponseRedirectToUrl.returnUrl);
}
@Override
public int hashCode() {
return Objects.hash(url, returnUrl);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrderNextActionResponseRedirectToUrl {\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append(" returnUrl: ").append(toIndentedString(returnUrl)).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 ");
}
}