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

com.clinia.model.registry.UpsertContainedResourceRequest 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.List;
import java.util.Map;
import java.util.Objects;

/** UpsertContainedResourceRequest */
@JsonTypeInfo(
  use = JsonTypeInfo.Id.NAME,
  include = JsonTypeInfo.As.EXISTING_PROPERTY,
  property = "type",
  visible = true,
  defaultImpl = UpsertContainedResourceRequest.class
)
public class UpsertContainedResourceRequest {

  @JsonProperty("type")
  private String type;

  @JsonProperty("data")
  private T data;

  @JsonProperty("contained")
  private Map> contained;

  public UpsertContainedResourceRequest setType(String type) {
    this.type = type;
    return this;
  }

  /** type for the contained resource. */
  @javax.annotation.Nonnull
  public String getType() {
    return type;
  }

  public UpsertContainedResourceRequest setData(T data) {
    this.data = data;
    return this;
  }

  /** Dynamic data attributes, based on the resource type. */
  @javax.annotation.Nonnull
  public T getData() {
    return data;
  }

  public UpsertContainedResourceRequest setContained(Map> contained) {
    this.contained = contained;
    return this;
  }

  public UpsertContainedResourceRequest putContained(String key, List containedItem) {
    if (this.contained == null) {
      this.contained = new HashMap<>();
    }
    this.contained.put(key, containedItem);
    return this;
  }

  /**
   * Resources contained in this top-level resource. Contained resources exists only within the
   * context of this top-level resource.
   */
  @javax.annotation.Nullable
  public Map> getContained() {
    return contained;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    UpsertContainedResourceRequest upsertContainedResourceRequest = (UpsertContainedResourceRequest) o;
    return (
      Objects.equals(this.type, upsertContainedResourceRequest.type) &&
      Objects.equals(this.data, upsertContainedResourceRequest.data) &&
      Objects.equals(this.contained, upsertContainedResourceRequest.contained)
    );
  }

  @Override
  public int hashCode() {
    return Objects.hash(type, data, contained);
  }

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