com.dominodatalab.pub.model.NewProjectGoalV1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-java-client Show documentation
Show all versions of domino-java-client Show documentation
Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.
/*
* 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;
/**
* NewProjectGoalV1
*/
@JsonPropertyOrder({
NewProjectGoalV1.JSON_PROPERTY_ASSIGNEE_ID,
NewProjectGoalV1.JSON_PROPERTY_DESCRIPTION,
NewProjectGoalV1.JSON_PROPERTY_STAGE_ID,
NewProjectGoalV1.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 NewProjectGoalV1 {
public static final String JSON_PROPERTY_ASSIGNEE_ID = "assigneeId";
private String assigneeId;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_STAGE_ID = "stageId";
private String stageId;
public static final String JSON_PROPERTY_TITLE = "title";
private String title;
public NewProjectGoalV1() {
}
public NewProjectGoalV1 assigneeId(String assigneeId) {
this.assigneeId = assigneeId;
return this;
}
/**
* Optional id of the user the goal will be assigned to
* @return assigneeId
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNEE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAssigneeId() {
return assigneeId;
}
@JsonProperty(JSON_PROPERTY_ASSIGNEE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAssigneeId(String assigneeId) {
this.assigneeId = assigneeId;
}
public NewProjectGoalV1 description(String description) {
this.description = description;
return this;
}
/**
* An optional 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 NewProjectGoalV1 stageId(String stageId) {
this.stageId = stageId;
return this;
}
/**
* Optional id of the stage the goal will be set to
* @return stageId
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getStageId() {
return stageId;
}
@JsonProperty(JSON_PROPERTY_STAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStageId(String stageId) {
this.stageId = stageId;
}
public NewProjectGoalV1 title(String title) {
this.title = title;
return this;
}
/**
* Title of the 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 NewProjectGoalV1 object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NewProjectGoalV1 newProjectGoalV1 = (NewProjectGoalV1) o;
return Objects.equals(this.assigneeId, newProjectGoalV1.assigneeId) &&
Objects.equals(this.description, newProjectGoalV1.description) &&
Objects.equals(this.stageId, newProjectGoalV1.stageId) &&
Objects.equals(this.title, newProjectGoalV1.title);
}
@Override
public int hashCode() {
return Objects.hash(assigneeId, description, stageId, title);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NewProjectGoalV1 {\n");
sb.append(" assigneeId: ").append(toIndentedString(assigneeId)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" stageId: ").append(toIndentedString(stageId)).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 `assigneeId` to the URL query string
if (getAssigneeId() != null) {
joiner.add(String.format("%sassigneeId%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getAssigneeId()), 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 `stageId` to the URL query string
if (getStageId() != null) {
joiner.add(String.format("%sstageId%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getStageId()), 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