com.clinia.model.registry.UpsertRelationshipDefinitionRequest 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.registry;
import com.clinia.model.common.*;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/** UpsertRelationshipDefinitionRequest */
public class UpsertRelationshipDefinitionRequest {
@JsonProperty("from")
private V1RelationshipRefDefinition from;
@JsonProperty("to")
private V1RelationshipRefDefinition to;
@JsonProperty("properties")
private Map properties;
public UpsertRelationshipDefinitionRequest setFrom(V1RelationshipRefDefinition from) {
this.from = from;
return this;
}
/** Get from */
@javax.annotation.Nonnull
public V1RelationshipRefDefinition getFrom() {
return from;
}
public UpsertRelationshipDefinitionRequest setTo(V1RelationshipRefDefinition to) {
this.to = to;
return this;
}
/** Get to */
@javax.annotation.Nonnull
public V1RelationshipRefDefinition getTo() {
return to;
}
public UpsertRelationshipDefinitionRequest setProperties(Map properties) {
this.properties = properties;
return this;
}
public UpsertRelationshipDefinitionRequest putProperties(String key, V1PropertyDefinition propertiesItem) {
if (this.properties == null) {
this.properties = new HashMap<>();
}
this.properties.put(key, propertiesItem);
return this;
}
/** Get properties */
@javax.annotation.Nullable
public Map getProperties() {
return properties;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpsertRelationshipDefinitionRequest upsertRelationshipDefinitionRequest = (UpsertRelationshipDefinitionRequest) o;
return (
Objects.equals(this.from, upsertRelationshipDefinitionRequest.from) &&
Objects.equals(this.to, upsertRelationshipDefinitionRequest.to) &&
Objects.equals(this.properties, upsertRelationshipDefinitionRequest.properties)
);
}
@Override
public int hashCode() {
return Objects.hash(from, to, properties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpsertRelationshipDefinitionRequest {\n");
sb.append(" from: ").append(toIndentedString(from)).append("\n");
sb.append(" to: ").append(toIndentedString(to)).append("\n");
sb.append(" properties: ").append(toIndentedString(properties)).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 ");
}
}