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

com.dominodatalab.pub.model.LinkedGoalV1 Maven / Gradle / Ivy

Go to download

Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.

There is a newer version: 6.0.1.0
Show newest version
/*
 * Domino Public API
 * Domino Public API Endpoints
 *
 * The version of the OpenAPI document: 0.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.pub.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;


import com.dominodatalab.pub.invoker.ApiClient;
/**
 * LinkedGoalV1
 */
@JsonPropertyOrder({
  LinkedGoalV1.JSON_PROPERTY_CURRENT_STAGE,
  LinkedGoalV1.JSON_PROPERTY_DESCRIPTION,
  LinkedGoalV1.JSON_PROPERTY_GOAL_ID,
  LinkedGoalV1.JSON_PROPERTY_JOB_ID,
  LinkedGoalV1.JSON_PROPERTY_PROJECT_ID,
  LinkedGoalV1.JSON_PROPERTY_TITLE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:28.765500600-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class LinkedGoalV1 {
  public static final String JSON_PROPERTY_CURRENT_STAGE = "currentStage";
  private String currentStage;

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

  public static final String JSON_PROPERTY_GOAL_ID = "goalId";
  private String goalId;

  public static final String JSON_PROPERTY_JOB_ID = "jobId";
  private String jobId;

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

  public static final String JSON_PROPERTY_TITLE = "title";
  private String title;

  public LinkedGoalV1() { 
  }

  public LinkedGoalV1 currentStage(String currentStage) {
    this.currentStage = currentStage;
    return this;
  }

  /**
   * The stage this goal is currently assigned.
   * @return currentStage
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_CURRENT_STAGE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getCurrentStage() {
    return currentStage;
  }


  @JsonProperty(JSON_PROPERTY_CURRENT_STAGE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setCurrentStage(String currentStage) {
    this.currentStage = currentStage;
  }


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

  /**
   * Description of the Goal.
   * @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 LinkedGoalV1 goalId(String goalId) {
    this.goalId = goalId;
    return this;
  }

  /**
   * Id of Goal linked to Job.
   * @return goalId
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_GOAL_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getGoalId() {
    return goalId;
  }


  @JsonProperty(JSON_PROPERTY_GOAL_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setGoalId(String goalId) {
    this.goalId = goalId;
  }


  public LinkedGoalV1 jobId(String jobId) {
    this.jobId = jobId;
    return this;
  }

  /**
   * Id of Job linked to Goal.
   * @return jobId
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_JOB_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getJobId() {
    return jobId;
  }


  @JsonProperty(JSON_PROPERTY_JOB_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setJobId(String jobId) {
    this.jobId = jobId;
  }


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

  /**
   * Id of project resources belong to.
   * @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 LinkedGoalV1 title(String title) {
    this.title = title;
    return this;
  }

  /**
   * Name of goal.
   * @return title
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_TITLE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getTitle() {
    return title;
  }


  @JsonProperty(JSON_PROPERTY_TITLE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setTitle(String title) {
    this.title = title;
  }


  /**
   * Return true if this LinkedGoalV1 object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    LinkedGoalV1 linkedGoalV1 = (LinkedGoalV1) o;
    return Objects.equals(this.currentStage, linkedGoalV1.currentStage) &&
        Objects.equals(this.description, linkedGoalV1.description) &&
        Objects.equals(this.goalId, linkedGoalV1.goalId) &&
        Objects.equals(this.jobId, linkedGoalV1.jobId) &&
        Objects.equals(this.projectId, linkedGoalV1.projectId) &&
        Objects.equals(this.title, linkedGoalV1.title);
  }

  @Override
  public int hashCode() {
    return Objects.hash(currentStage, description, goalId, jobId, projectId, title);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class LinkedGoalV1 {\n");
    sb.append("    currentStage: ").append(toIndentedString(currentStage)).append("\n");
    sb.append("    description: ").append(toIndentedString(description)).append("\n");
    sb.append("    goalId: ").append(toIndentedString(goalId)).append("\n");
    sb.append("    jobId: ").append(toIndentedString(jobId)).append("\n");
    sb.append("    projectId: ").append(toIndentedString(projectId)).append("\n");
    sb.append("    title: ").append(toIndentedString(title)).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 `currentStage` to the URL query string
    if (getCurrentStage() != null) {
      joiner.add(String.format("%scurrentStage%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getCurrentStage()), 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(ApiClient.valueToString(getDescription()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `goalId` to the URL query string
    if (getGoalId() != null) {
      joiner.add(String.format("%sgoalId%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getGoalId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `jobId` to the URL query string
    if (getJobId() != null) {
      joiner.add(String.format("%sjobId%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getJobId()), 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(ApiClient.valueToString(getProjectId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `title` to the URL query string
    if (getTitle() != null) {
      joiner.add(String.format("%stitle%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getTitle()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy