com.dominodatalab.api.model.DominoLayoutWebCompleteWorkflowResponse 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.dominodatalab.api.model.DominoLayoutWebOwnerInfoDto;
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.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* DominoLayoutWebCompleteWorkflowResponse
*/
@JsonPropertyOrder({
DominoLayoutWebCompleteWorkflowResponse.JSON_PROPERTY_ERRORS,
DominoLayoutWebCompleteWorkflowResponse.JSON_PROPERTY_SUCCESS,
DominoLayoutWebCompleteWorkflowResponse.JSON_PROPERTY_ID,
DominoLayoutWebCompleteWorkflowResponse.JSON_PROPERTY_NAME,
DominoLayoutWebCompleteWorkflowResponse.JSON_PROPERTY_OWNER_INFO
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoLayoutWebCompleteWorkflowResponse {
public static final String JSON_PROPERTY_ERRORS = "errors";
private List errors = new ArrayList<>();
public static final String JSON_PROPERTY_SUCCESS = "success";
private Boolean success;
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_OWNER_INFO = "ownerInfo";
private DominoLayoutWebOwnerInfoDto ownerInfo;
public DominoLayoutWebCompleteWorkflowResponse() {
}
public DominoLayoutWebCompleteWorkflowResponse errors(List errors) {
this.errors = errors;
return this;
}
public DominoLayoutWebCompleteWorkflowResponse addErrorsItem(String errorsItem) {
if (this.errors == null) {
this.errors = new ArrayList<>();
}
this.errors.add(errorsItem);
return this;
}
/**
* Get errors
* @return errors
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ERRORS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public List getErrors() {
return errors;
}
@JsonProperty(JSON_PROPERTY_ERRORS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setErrors(List errors) {
this.errors = errors;
}
public DominoLayoutWebCompleteWorkflowResponse success(Boolean success) {
this.success = success;
return this;
}
/**
* Get success
* @return success
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_SUCCESS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Boolean getSuccess() {
return success;
}
@JsonProperty(JSON_PROPERTY_SUCCESS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSuccess(Boolean success) {
this.success = success;
}
public DominoLayoutWebCompleteWorkflowResponse id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(String id) {
this.id = id;
}
public DominoLayoutWebCompleteWorkflowResponse name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(String name) {
this.name = name;
}
public DominoLayoutWebCompleteWorkflowResponse ownerInfo(DominoLayoutWebOwnerInfoDto ownerInfo) {
this.ownerInfo = ownerInfo;
return this;
}
/**
* Get ownerInfo
* @return ownerInfo
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OWNER_INFO)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DominoLayoutWebOwnerInfoDto getOwnerInfo() {
return ownerInfo;
}
@JsonProperty(JSON_PROPERTY_OWNER_INFO)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setOwnerInfo(DominoLayoutWebOwnerInfoDto ownerInfo) {
this.ownerInfo = ownerInfo;
}
/**
* Return true if this domino.layout.web.CompleteWorkflowResponse object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoLayoutWebCompleteWorkflowResponse dominoLayoutWebCompleteWorkflowResponse = (DominoLayoutWebCompleteWorkflowResponse) o;
return Objects.equals(this.errors, dominoLayoutWebCompleteWorkflowResponse.errors) &&
Objects.equals(this.success, dominoLayoutWebCompleteWorkflowResponse.success) &&
Objects.equals(this.id, dominoLayoutWebCompleteWorkflowResponse.id) &&
Objects.equals(this.name, dominoLayoutWebCompleteWorkflowResponse.name) &&
Objects.equals(this.ownerInfo, dominoLayoutWebCompleteWorkflowResponse.ownerInfo);
}
@Override
public int hashCode() {
return Objects.hash(errors, success, id, name, ownerInfo);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoLayoutWebCompleteWorkflowResponse {\n");
sb.append(" errors: ").append(toIndentedString(errors)).append("\n");
sb.append(" success: ").append(toIndentedString(success)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" ownerInfo: ").append(toIndentedString(ownerInfo)).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 `errors` to the URL query string
if (getErrors() != null) {
for (int i = 0; i < getErrors().size(); i++) {
joiner.add(String.format("%serrors%s%s=%s", prefix, suffix,
"".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix),
URLEncoder.encode(String.valueOf(getErrors().get(i)), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
}
// add `success` to the URL query string
if (getSuccess() != null) {
joiner.add(String.format("%ssuccess%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getSuccess()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `id` to the URL query string
if (getId() != null) {
joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getId()), 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 `ownerInfo` to the URL query string
if (getOwnerInfo() != null) {
joiner.add(getOwnerInfo().toUrlQueryString(prefix + "ownerInfo" + suffix));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy