com.dominodatalab.api.model.DominoActivityApiProjectGoalModelLinkActivityMetadata 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;
/**
* DominoActivityApiProjectGoalModelLinkActivityMetadata
*/
@JsonPropertyOrder({
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_ACTION,
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_MODEL_ID,
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_MODEL_VERSION,
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_MODEL_VERSION_ID,
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_PROJECT_GOAL_TITLE,
DominoActivityApiProjectGoalModelLinkActivityMetadata.JSON_PROPERTY_NAME
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoActivityApiProjectGoalModelLinkActivityMetadata {
/**
* Gets or Sets action
*/
public enum ActionEnum {
ADDED("added"),
REMOVED("removed");
private String value;
ActionEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static ActionEnum fromValue(String value) {
for (ActionEnum b : ActionEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_ACTION = "action";
private ActionEnum action;
public static final String JSON_PROPERTY_MODEL_ID = "modelId";
private String modelId;
public static final String JSON_PROPERTY_MODEL_VERSION = "modelVersion";
private Integer modelVersion;
public static final String JSON_PROPERTY_MODEL_VERSION_ID = "modelVersionId";
private String modelVersionId;
public static final String JSON_PROPERTY_PROJECT_GOAL_TITLE = "projectGoalTitle";
private String projectGoalTitle;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public DominoActivityApiProjectGoalModelLinkActivityMetadata() {
}
public DominoActivityApiProjectGoalModelLinkActivityMetadata action(ActionEnum action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ACTION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ActionEnum getAction() {
return action;
}
@JsonProperty(JSON_PROPERTY_ACTION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAction(ActionEnum action) {
this.action = action;
}
public DominoActivityApiProjectGoalModelLinkActivityMetadata 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 DominoActivityApiProjectGoalModelLinkActivityMetadata modelVersion(Integer modelVersion) {
this.modelVersion = modelVersion;
return this;
}
/**
* Get modelVersion
* @return modelVersion
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_MODEL_VERSION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getModelVersion() {
return modelVersion;
}
@JsonProperty(JSON_PROPERTY_MODEL_VERSION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setModelVersion(Integer modelVersion) {
this.modelVersion = modelVersion;
}
public DominoActivityApiProjectGoalModelLinkActivityMetadata 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 DominoActivityApiProjectGoalModelLinkActivityMetadata projectGoalTitle(String projectGoalTitle) {
this.projectGoalTitle = projectGoalTitle;
return this;
}
/**
* Get projectGoalTitle
* @return projectGoalTitle
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PROJECT_GOAL_TITLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getProjectGoalTitle() {
return projectGoalTitle;
}
@JsonProperty(JSON_PROPERTY_PROJECT_GOAL_TITLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setProjectGoalTitle(String projectGoalTitle) {
this.projectGoalTitle = projectGoalTitle;
}
public DominoActivityApiProjectGoalModelLinkActivityMetadata 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;
}
/**
* Return true if this domino.activity.api.ProjectGoalModelLinkActivityMetadata object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoActivityApiProjectGoalModelLinkActivityMetadata dominoActivityApiProjectGoalModelLinkActivityMetadata = (DominoActivityApiProjectGoalModelLinkActivityMetadata) o;
return Objects.equals(this.action, dominoActivityApiProjectGoalModelLinkActivityMetadata.action) &&
Objects.equals(this.modelId, dominoActivityApiProjectGoalModelLinkActivityMetadata.modelId) &&
Objects.equals(this.modelVersion, dominoActivityApiProjectGoalModelLinkActivityMetadata.modelVersion) &&
Objects.equals(this.modelVersionId, dominoActivityApiProjectGoalModelLinkActivityMetadata.modelVersionId) &&
Objects.equals(this.projectGoalTitle, dominoActivityApiProjectGoalModelLinkActivityMetadata.projectGoalTitle) &&
Objects.equals(this.name, dominoActivityApiProjectGoalModelLinkActivityMetadata.name);
}
@Override
public int hashCode() {
return Objects.hash(action, modelId, modelVersion, modelVersionId, projectGoalTitle, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoActivityApiProjectGoalModelLinkActivityMetadata {\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" modelId: ").append(toIndentedString(modelId)).append("\n");
sb.append(" modelVersion: ").append(toIndentedString(modelVersion)).append("\n");
sb.append(" modelVersionId: ").append(toIndentedString(modelVersionId)).append("\n");
sb.append(" projectGoalTitle: ").append(toIndentedString(projectGoalTitle)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 `action` to the URL query string
if (getAction() != null) {
joiner.add(String.format("%saction%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getAction()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// 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 `modelVersion` to the URL query string
if (getModelVersion() != null) {
joiner.add(String.format("%smodelVersion%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelVersion()), 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 `projectGoalTitle` to the URL query string
if (getProjectGoalTitle() != null) {
joiner.add(String.format("%sprojectGoalTitle%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProjectGoalTitle()), 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")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy