All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clinia.model.registry.V1RelationshipDefinition 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;

/** V1RelationshipDefinition */
public class V1RelationshipDefinition {

  @JsonProperty("key")
  private String key;

  @JsonProperty("from")
  private V1RelationshipRefDefinition from;

  @JsonProperty("to")
  private V1RelationshipRefDefinition to;

  @JsonProperty("properties")
  private Map properties = new HashMap<>();

  /** Get key */
  @javax.annotation.Nullable
  public String getKey() {
    return key;
  }

  public V1RelationshipDefinition setFrom(V1RelationshipRefDefinition from) {
    this.from = from;
    return this;
  }

  /** Get from */
  @javax.annotation.Nonnull
  public V1RelationshipRefDefinition getFrom() {
    return from;
  }

  public V1RelationshipDefinition setTo(V1RelationshipRefDefinition to) {
    this.to = to;
    return this;
  }

  /** Get to */
  @javax.annotation.Nonnull
  public V1RelationshipRefDefinition getTo() {
    return to;
  }

  public V1RelationshipDefinition setProperties(Map properties) {
    this.properties = properties;
    return this;
  }

  public V1RelationshipDefinition putProperties(String key, V1PropertyDefinition propertiesItem) {
    this.properties.put(key, propertiesItem);
    return this;
  }

  /** Get properties */
  @javax.annotation.Nonnull
  public Map getProperties() {
    return properties;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    V1RelationshipDefinition v1RelationshipDefinition = (V1RelationshipDefinition) o;
    return (
      Objects.equals(this.key, v1RelationshipDefinition.key) &&
      Objects.equals(this.from, v1RelationshipDefinition.from) &&
      Objects.equals(this.to, v1RelationshipDefinition.to) &&
      Objects.equals(this.properties, v1RelationshipDefinition.properties)
    );
  }

  @Override
  public int hashCode() {
    return Objects.hash(key, from, to, properties);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class V1RelationshipDefinition {\n");
    sb.append("    key: ").append(toIndentedString(key)).append("\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    ");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy