com.conekta.model.BlacklistRuleResponse 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.
The newest version!
/*
* 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.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* BlacklistRuleResponse
*/
@JsonPropertyOrder({
BlacklistRuleResponse.JSON_PROPERTY_ID,
BlacklistRuleResponse.JSON_PROPERTY_FIELD,
BlacklistRuleResponse.JSON_PROPERTY_VALUE,
BlacklistRuleResponse.JSON_PROPERTY_DESCRIPTION
})
@JsonTypeName("blacklist_rule_response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class BlacklistRuleResponse {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_FIELD = "field";
private String field;
public static final String JSON_PROPERTY_VALUE = "value";
private String value;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public BlacklistRuleResponse() {
}
public BlacklistRuleResponse id(String id) {
this.id = id;
return this;
}
/**
* Blacklist rule id
* @return id
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(String id) {
this.id = id;
}
public BlacklistRuleResponse field(String field) {
this.field = field;
return this;
}
/**
* field used for blacklists rule
* @return field
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FIELD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getField() {
return field;
}
@JsonProperty(JSON_PROPERTY_FIELD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setField(String field) {
this.field = field;
}
public BlacklistRuleResponse value(String value) {
this.value = value;
return this;
}
/**
* value used for blacklists rule
* @return value
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getValue() {
return value;
}
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setValue(String value) {
this.value = value;
}
public BlacklistRuleResponse description(String description) {
this.description = description;
return this;
}
/**
* use an description for blacklisted rule
* @return description
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
/**
* Return true if this blacklist_rule_response object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BlacklistRuleResponse blacklistRuleResponse = (BlacklistRuleResponse) o;
return Objects.equals(this.id, blacklistRuleResponse.id) &&
Objects.equals(this.field, blacklistRuleResponse.field) &&
Objects.equals(this.value, blacklistRuleResponse.value) &&
Objects.equals(this.description, blacklistRuleResponse.description);
}
@Override
public int hashCode() {
return Objects.hash(id, field, value, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BlacklistRuleResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" field: ").append(toIndentedString(field)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).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 ");
}
}