com.clinia.model.common.V1HumanNamePropertyDefinition Maven / Gradle / Ivy
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost
// - read more on https://github.com/clinia/api-clients-generation. DO NOT EDIT.
package com.clinia.model.common;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/** V1HumanNamePropertyDefinition */
@JsonDeserialize(as = V1HumanNamePropertyDefinition.class)
public class V1HumanNamePropertyDefinition implements V1PropertyDefinition {
@JsonProperty("type")
private V1DataType type = V1DataType.HUMANNAME;
@JsonProperty("rules")
private List rules;
public V1HumanNamePropertyDefinition setType(V1DataType type) {
this.type = type;
return this;
}
/** Get type */
@javax.annotation.Nonnull
public V1DataType getType() {
return type;
}
public V1HumanNamePropertyDefinition setRules(List rules) {
this.rules = rules;
return this;
}
public V1HumanNamePropertyDefinition addRules(V1PropertyRule rulesItem) {
if (this.rules == null) {
this.rules = new ArrayList<>();
}
this.rules.add(rulesItem);
return this;
}
/** Get rules */
@javax.annotation.Nullable
public List getRules() {
return rules;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1HumanNamePropertyDefinition v1HumanNamePropertyDefinition = (V1HumanNamePropertyDefinition) o;
return Objects.equals(this.type, v1HumanNamePropertyDefinition.type) && Objects.equals(this.rules, v1HumanNamePropertyDefinition.rules);
}
@Override
public int hashCode() {
return Objects.hash(type, rules);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1HumanNamePropertyDefinition {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" rules: ").append(toIndentedString(rules)).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 ");
}
}