io.logicdrop.openapi.models.TemplateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparks-openapi-models Show documentation
Show all versions of sparks-openapi-models Show documentation
Logicdrop Sparks OpenAPI client
/*
* Sparks OpenAPI
* Generated documentation for the Logicdrop Sparks API and OpenAPI clients. Logicdrop Sparks lets users build rules, analyze data, and automate documents. Use it to make decisions faster, generate documents better, and learn from your data. ### Documentation - [User Documentation](https://docs.logicdrop.com) ### Modules - [Sparks Compute](https://docs.logicdrop.com/rules/introduction) - [Sparks Decision Tables](https://docs.logicdrop.com/rules/authoring-decision-tables) - [Sparks Documents](https://docs.logicdrop.com/documents/introduction) ### Clients - [OpenAPI Clients](https://docs.logicdrop.com/development/sample-clients) ### Security - [Authorizing API Requests](https://docs.logicdrop.com/development/authorization)
*
* The version of the OpenAPI document: v_VERSION_, build# _BUILD_
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.logicdrop.openapi.models;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* TemplateRequest
*/
@JsonPropertyOrder({
TemplateRequest.JSON_PROPERTY_PROJECT,
TemplateRequest.JSON_PROPERTY_TEMPLATE,
TemplateRequest.JSON_PROPERTY_VERSION,
TemplateRequest.JSON_PROPERTY_DATA
})
public class TemplateRequest {
public static final String JSON_PROPERTY_PROJECT = "project";
private String project;
public static final String JSON_PROPERTY_TEMPLATE = "template";
private String template;
public static final String JSON_PROPERTY_VERSION = "version";
private String version;
public static final String JSON_PROPERTY_DATA = "data";
private Map data = null;
public TemplateRequest project(String project) {
this.project = project;
return this;
}
/**
* Project name
* @return project
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Project name")
@JsonProperty(JSON_PROPERTY_PROJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getProject() {
return project;
}
public void setProject(String project) {
this.project = project;
}
public TemplateRequest template(String template) {
this.template = template;
return this;
}
/**
* Template name
* @return template
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Template name")
@JsonProperty(JSON_PROPERTY_TEMPLATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTemplate() {
return template;
}
public void setTemplate(String template) {
this.template = template;
}
public TemplateRequest version(String version) {
this.version = version;
return this;
}
/**
* Template version
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Template version")
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public TemplateRequest data(Map data) {
this.data = data;
return this;
}
public TemplateRequest putDataItem(String key, Object dataItem) {
if (this.data == null) {
this.data = new HashMap<>();
}
this.data.put(key, dataItem);
return this;
}
/**
* Data for the template
* @return data
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Data for the template")
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getData() {
return data;
}
public void setData(Map data) {
this.data = data;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TemplateRequest templateRequest = (TemplateRequest) o;
return Objects.equals(this.project, templateRequest.project) &&
Objects.equals(this.template, templateRequest.template) &&
Objects.equals(this.version, templateRequest.version) &&
Objects.equals(this.data, templateRequest.data);
}
@Override
public int hashCode() {
return Objects.hash(project, template, version, data);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TemplateRequest {\n");
sb.append(" project: ").append(toIndentedString(project)).append("\n");
sb.append(" template: ").append(toIndentedString(template)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}