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

com.dominodatalab.api.model.DominoModelmanagerWebBuildModelImageApiResponse Maven / Gradle / Ivy

/*
 * Domino Data Lab API v4
 * This API is going to provide access to all the Domino functions available in the user interface. To authenticate your requests, include your API Key (which you can find on your account page) with the header X-Domino-Api-Key. 
 *
 * The version of the OpenAPI document: 4.0.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.dominodatalab.api.model;

import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * DominoModelmanagerWebBuildModelImageApiResponse
 */
@JsonPropertyOrder({
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_MODEL_ID,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_NAME,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_DESCRIPTION,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_ENVIRONMENT_ID,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_PROJECT_ID,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_PROJECT_NAME,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_BUILD_STATUS,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_MODEL_VERSION_ID,
  DominoModelmanagerWebBuildModelImageApiResponse.JSON_PROPERTY_MODEL_VERSION_NUMBER
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoModelmanagerWebBuildModelImageApiResponse {
  public static final String JSON_PROPERTY_MODEL_ID = "modelId";
  private String modelId;

  public static final String JSON_PROPERTY_NAME = "name";
  private String name;

  public static final String JSON_PROPERTY_DESCRIPTION = "description";
  private String description;

  public static final String JSON_PROPERTY_ENVIRONMENT_ID = "environmentId";
  private String environmentId;

  public static final String JSON_PROPERTY_PROJECT_ID = "projectId";
  private String projectId;

  public static final String JSON_PROPERTY_PROJECT_NAME = "projectName";
  private String projectName;

  public static final String JSON_PROPERTY_BUILD_STATUS = "buildStatus";
  private String buildStatus;

  public static final String JSON_PROPERTY_MODEL_VERSION_ID = "modelVersionId";
  private String modelVersionId;

  public static final String JSON_PROPERTY_MODEL_VERSION_NUMBER = "modelVersionNumber";
  private Integer modelVersionNumber;

  public DominoModelmanagerWebBuildModelImageApiResponse() { 
  }

  public DominoModelmanagerWebBuildModelImageApiResponse modelId(String modelId) {
    this.modelId = modelId;
    return this;
  }

   /**
   * Get modelId
   * @return modelId
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_MODEL_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getModelId() {
    return modelId;
  }


  @JsonProperty(JSON_PROPERTY_MODEL_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setModelId(String modelId) {
    this.modelId = modelId;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse name(String name) {
    this.name = name;
    return this;
  }

   /**
   * Get name
   * @return name
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getName() {
    return name;
  }


  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setName(String name) {
    this.name = name;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse description(String description) {
    this.description = description;
    return this;
  }

   /**
   * Get description
   * @return description
  **/
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_DESCRIPTION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getDescription() {
    return description;
  }


  @JsonProperty(JSON_PROPERTY_DESCRIPTION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setDescription(String description) {
    this.description = description;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse environmentId(String environmentId) {
    this.environmentId = environmentId;
    return this;
  }

   /**
   * Get environmentId
   * @return environmentId
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_ENVIRONMENT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getEnvironmentId() {
    return environmentId;
  }


  @JsonProperty(JSON_PROPERTY_ENVIRONMENT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setEnvironmentId(String environmentId) {
    this.environmentId = environmentId;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse projectId(String projectId) {
    this.projectId = projectId;
    return this;
  }

   /**
   * Get projectId
   * @return projectId
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_PROJECT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getProjectId() {
    return projectId;
  }


  @JsonProperty(JSON_PROPERTY_PROJECT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setProjectId(String projectId) {
    this.projectId = projectId;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse projectName(String projectName) {
    this.projectName = projectName;
    return this;
  }

   /**
   * Get projectName
   * @return projectName
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_PROJECT_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getProjectName() {
    return projectName;
  }


  @JsonProperty(JSON_PROPERTY_PROJECT_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setProjectName(String projectName) {
    this.projectName = projectName;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse buildStatus(String buildStatus) {
    this.buildStatus = buildStatus;
    return this;
  }

   /**
   * Get buildStatus
   * @return buildStatus
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_BUILD_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getBuildStatus() {
    return buildStatus;
  }


  @JsonProperty(JSON_PROPERTY_BUILD_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setBuildStatus(String buildStatus) {
    this.buildStatus = buildStatus;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse modelVersionId(String modelVersionId) {
    this.modelVersionId = modelVersionId;
    return this;
  }

   /**
   * Get modelVersionId
   * @return modelVersionId
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_MODEL_VERSION_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getModelVersionId() {
    return modelVersionId;
  }


  @JsonProperty(JSON_PROPERTY_MODEL_VERSION_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setModelVersionId(String modelVersionId) {
    this.modelVersionId = modelVersionId;
  }


  public DominoModelmanagerWebBuildModelImageApiResponse modelVersionNumber(Integer modelVersionNumber) {
    this.modelVersionNumber = modelVersionNumber;
    return this;
  }

   /**
   * Get modelVersionNumber
   * @return modelVersionNumber
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_MODEL_VERSION_NUMBER)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Integer getModelVersionNumber() {
    return modelVersionNumber;
  }


  @JsonProperty(JSON_PROPERTY_MODEL_VERSION_NUMBER)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setModelVersionNumber(Integer modelVersionNumber) {
    this.modelVersionNumber = modelVersionNumber;
  }


  /**
   * Return true if this domino.modelmanager.web.BuildModelImageApiResponse object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoModelmanagerWebBuildModelImageApiResponse dominoModelmanagerWebBuildModelImageApiResponse = (DominoModelmanagerWebBuildModelImageApiResponse) o;
    return Objects.equals(this.modelId, dominoModelmanagerWebBuildModelImageApiResponse.modelId) &&
        Objects.equals(this.name, dominoModelmanagerWebBuildModelImageApiResponse.name) &&
        Objects.equals(this.description, dominoModelmanagerWebBuildModelImageApiResponse.description) &&
        Objects.equals(this.environmentId, dominoModelmanagerWebBuildModelImageApiResponse.environmentId) &&
        Objects.equals(this.projectId, dominoModelmanagerWebBuildModelImageApiResponse.projectId) &&
        Objects.equals(this.projectName, dominoModelmanagerWebBuildModelImageApiResponse.projectName) &&
        Objects.equals(this.buildStatus, dominoModelmanagerWebBuildModelImageApiResponse.buildStatus) &&
        Objects.equals(this.modelVersionId, dominoModelmanagerWebBuildModelImageApiResponse.modelVersionId) &&
        Objects.equals(this.modelVersionNumber, dominoModelmanagerWebBuildModelImageApiResponse.modelVersionNumber);
  }

  @Override
  public int hashCode() {
    return Objects.hash(modelId, name, description, environmentId, projectId, projectName, buildStatus, modelVersionId, modelVersionNumber);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoModelmanagerWebBuildModelImageApiResponse {\n");
    sb.append("    modelId: ").append(toIndentedString(modelId)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    description: ").append(toIndentedString(description)).append("\n");
    sb.append("    environmentId: ").append(toIndentedString(environmentId)).append("\n");
    sb.append("    projectId: ").append(toIndentedString(projectId)).append("\n");
    sb.append("    projectName: ").append(toIndentedString(projectName)).append("\n");
    sb.append("    buildStatus: ").append(toIndentedString(buildStatus)).append("\n");
    sb.append("    modelVersionId: ").append(toIndentedString(modelVersionId)).append("\n");
    sb.append("    modelVersionNumber: ").append(toIndentedString(modelVersionNumber)).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    ");
  }

  /**
   * Convert the instance into URL query string.
   *
   * @return URL query string
   */
  public String toUrlQueryString() {
    return toUrlQueryString(null);
  }

  /**
   * Convert the instance into URL query string.
   *
   * @param prefix prefix of the query string
   * @return URL query string
   */
  public String toUrlQueryString(String prefix) {
    String suffix = "";
    String containerSuffix = "";
    String containerPrefix = "";
    if (prefix == null) {
      // style=form, explode=true, e.g. /pet?name=cat&type=manx
      prefix = "";
    } else {
      // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
      prefix = prefix + "[";
      suffix = "]";
      containerSuffix = "]";
      containerPrefix = "[";
    }

    StringJoiner joiner = new StringJoiner("&");

    // add `modelId` to the URL query string
    if (getModelId() != null) {
      joiner.add(String.format("%smodelId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `name` to the URL query string
    if (getName() != null) {
      joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `description` to the URL query string
    if (getDescription() != null) {
      joiner.add(String.format("%sdescription%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDescription()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `environmentId` to the URL query string
    if (getEnvironmentId() != null) {
      joiner.add(String.format("%senvironmentId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getEnvironmentId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `projectId` to the URL query string
    if (getProjectId() != null) {
      joiner.add(String.format("%sprojectId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProjectId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `projectName` to the URL query string
    if (getProjectName() != null) {
      joiner.add(String.format("%sprojectName%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProjectName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `buildStatus` to the URL query string
    if (getBuildStatus() != null) {
      joiner.add(String.format("%sbuildStatus%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getBuildStatus()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `modelVersionId` to the URL query string
    if (getModelVersionId() != null) {
      joiner.add(String.format("%smodelVersionId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelVersionId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `modelVersionNumber` to the URL query string
    if (getModelVersionNumber() != null) {
      joiner.add(String.format("%smodelVersionNumber%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelVersionNumber()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy