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

com.volcengine.volcobserve.model.ObjectForListObjectGroupsOutput Maven / Gradle / Ivy

There is a newer version: 1.0.75
Show newest version
/*
 * volc_observe
 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
 *
 * OpenAPI spec version: common-version
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */

package com.volcengine.volcobserve.model;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * ObjectForListObjectGroupsOutput
 */



public class ObjectForListObjectGroupsOutput {
  @SerializedName("Dimensions")
  private Map> dimensions = null;

  @SerializedName("Id")
  private String id = null;

  @SerializedName("Namespace")
  private String namespace = null;

  @SerializedName("Region")
  private String region = null;

  @SerializedName("Type")
  private String type = null;

  public ObjectForListObjectGroupsOutput dimensions(Map> dimensions) {
    this.dimensions = dimensions;
    return this;
  }

  public ObjectForListObjectGroupsOutput putDimensionsItem(String key, List dimensionsItem) {
    if (this.dimensions == null) {
      this.dimensions = new HashMap>();
    }
    this.dimensions.put(key, dimensionsItem);
    return this;
  }

   /**
   * Get dimensions
   * @return dimensions
  **/
  @Valid
  @Schema(description = "")
  public Map> getDimensions() {
    return dimensions;
  }

  public void setDimensions(Map> dimensions) {
    this.dimensions = dimensions;
  }

  public ObjectForListObjectGroupsOutput id(String id) {
    this.id = id;
    return this;
  }

   /**
   * Get id
   * @return id
  **/
  @Schema(description = "")
  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public ObjectForListObjectGroupsOutput namespace(String namespace) {
    this.namespace = namespace;
    return this;
  }

   /**
   * Get namespace
   * @return namespace
  **/
  @Schema(description = "")
  public String getNamespace() {
    return namespace;
  }

  public void setNamespace(String namespace) {
    this.namespace = namespace;
  }

  public ObjectForListObjectGroupsOutput region(String region) {
    this.region = region;
    return this;
  }

   /**
   * Get region
   * @return region
  **/
  @Schema(description = "")
  public String getRegion() {
    return region;
  }

  public void setRegion(String region) {
    this.region = region;
  }

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

   /**
   * Get type
   * @return type
  **/
  @Schema(description = "")
  public String getType() {
    return type;
  }

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


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ObjectForListObjectGroupsOutput objectForListObjectGroupsOutput = (ObjectForListObjectGroupsOutput) o;
    return Objects.equals(this.dimensions, objectForListObjectGroupsOutput.dimensions) &&
        Objects.equals(this.id, objectForListObjectGroupsOutput.id) &&
        Objects.equals(this.namespace, objectForListObjectGroupsOutput.namespace) &&
        Objects.equals(this.region, objectForListObjectGroupsOutput.region) &&
        Objects.equals(this.type, objectForListObjectGroupsOutput.type);
  }

  @Override
  public int hashCode() {
    return Objects.hash(dimensions, id, namespace, region, type);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ObjectForListObjectGroupsOutput {\n");
    
    sb.append("    dimensions: ").append(toIndentedString(dimensions)).append("\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    namespace: ").append(toIndentedString(namespace)).append("\n");
    sb.append("    region: ").append(toIndentedString(region)).append("\n");
    sb.append("    type: ").append(toIndentedString(type)).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(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy