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

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

/** UpsertProfileRequest */
public class UpsertProfileRequest {

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

  @JsonProperty("contained")
  private Map contained;

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

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

  /** Properties of the profile. It must follow pattern: `^[a-zA-Z0-9-][\\w-]$`. */
  @javax.annotation.Nonnull
  public Map getProperties() {
    return properties;
  }

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

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

  /** Contained of the profile. It must follow pattern: `^[a-zA-Z0-9-][\\w-]$`. */
  @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;
    }
    UpsertProfileRequest upsertProfileRequest = (UpsertProfileRequest) o;
    return (
      Objects.equals(this.properties, upsertProfileRequest.properties) && Objects.equals(this.contained, upsertProfileRequest.contained)
    );
  }

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

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