com.clinia.model.common.V1BasePropertyDefinition 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;
/** V1BasePropertyDefinition */
public class V1BasePropertyDefinition {
@JsonProperty("type")
private V1DataType type;
@JsonProperty("rules")
private List rules;
public V1BasePropertyDefinition setType(V1DataType type) {
this.type = type;
return this;
}
/** Get type */
@javax.annotation.Nonnull
public V1DataType getType() {
return type;
}
public V1BasePropertyDefinition setRules(List rules) {
this.rules = rules;
return this;
}
public V1BasePropertyDefinition 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;
}
V1BasePropertyDefinition v1BasePropertyDefinition = (V1BasePropertyDefinition) o;
return Objects.equals(this.type, v1BasePropertyDefinition.type) && Objects.equals(this.rules, v1BasePropertyDefinition.rules);
}
@Override
public int hashCode() {
return Objects.hash(type, rules);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1BasePropertyDefinition {\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 ");
}
}