All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.logicdrop.openapi.models.SamplerRequest Maven / Gradle / Ivy
/*
* 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.logicdrop.openapi.models.Assertion;
import io.logicdrop.openapi.models.DesignerOptions;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* SamplerRequest
*/
@JsonPropertyOrder({
SamplerRequest.JSON_PROPERTY_PROJECT,
SamplerRequest.JSON_PROPERTY_RULESET,
SamplerRequest.JSON_PROPERTY_VERSION,
SamplerRequest.JSON_PROPERTY_PROPERTIES,
SamplerRequest.JSON_PROPERTY_FILTER,
SamplerRequest.JSON_PROPERTY_INPUTS,
SamplerRequest.JSON_PROPERTY_OUTPUTS,
SamplerRequest.JSON_PROPERTY_OPTIONS,
SamplerRequest.JSON_PROPERTY_ASSERTIONS
})
public class SamplerRequest {
public static final String JSON_PROPERTY_PROJECT = "project";
private String project;
public static final String JSON_PROPERTY_RULESET = "ruleset";
private String ruleset;
public static final String JSON_PROPERTY_VERSION = "version";
private String version;
public static final String JSON_PROPERTY_PROPERTIES = "properties";
private Map properties = null;
public static final String JSON_PROPERTY_FILTER = "filter";
private List filter = null;
public static final String JSON_PROPERTY_INPUTS = "inputs";
private List> inputs = null;
public static final String JSON_PROPERTY_OUTPUTS = "outputs";
private List outputs = null;
public static final String JSON_PROPERTY_OPTIONS = "options";
private DesignerOptions options;
public static final String JSON_PROPERTY_ASSERTIONS = "assertions";
private List assertions = null;
public SamplerRequest 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 SamplerRequest ruleset(String ruleset) {
this.ruleset = ruleset;
return this;
}
/**
* Ruleset name
* @return ruleset
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Ruleset name")
@JsonProperty(JSON_PROPERTY_RULESET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRuleset() {
return ruleset;
}
public void setRuleset(String ruleset) {
this.ruleset = ruleset;
}
public SamplerRequest version(String version) {
this.version = version;
return this;
}
/**
* Ruleset version
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Ruleset 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 SamplerRequest properties(Map properties) {
this.properties = properties;
return this;
}
public SamplerRequest putPropertiesItem(String key, Object propertiesItem) {
if (this.properties == null) {
this.properties = new HashMap<>();
}
this.properties.put(key, propertiesItem);
return this;
}
/**
* User properties
* @return properties
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "User properties")
@JsonProperty(JSON_PROPERTY_PROPERTIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public SamplerRequest filter(List filter) {
this.filter = filter;
return this;
}
public SamplerRequest addFilterItem(String filterItem) {
if (this.filter == null) {
this.filter = new ArrayList<>();
}
this.filter.add(filterItem);
return this;
}
/**
* Inputs filter
* @return filter
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Inputs filter")
@JsonProperty(JSON_PROPERTY_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getFilter() {
return filter;
}
public void setFilter(List filter) {
this.filter = filter;
}
public SamplerRequest inputs(List> inputs) {
this.inputs = inputs;
return this;
}
public SamplerRequest addInputsItem(Map inputsItem) {
if (this.inputs == null) {
this.inputs = new ArrayList<>();
}
this.inputs.add(inputsItem);
return this;
}
/**
* Inputs to process
* @return inputs
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Inputs to process")
@JsonProperty(JSON_PROPERTY_INPUTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List> getInputs() {
return inputs;
}
public void setInputs(List> inputs) {
this.inputs = inputs;
}
public SamplerRequest outputs(List outputs) {
this.outputs = outputs;
return this;
}
public SamplerRequest addOutputsItem(String outputsItem) {
if (this.outputs == null) {
this.outputs = new ArrayList<>();
}
this.outputs.add(outputsItem);
return this;
}
/**
* Outputs to return (by name)
* @return outputs
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Outputs to return (by name)")
@JsonProperty(JSON_PROPERTY_OUTPUTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getOutputs() {
return outputs;
}
public void setOutputs(List outputs) {
this.outputs = outputs;
}
public SamplerRequest options(DesignerOptions options) {
this.options = options;
return this;
}
/**
* Get options
* @return options
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_OPTIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DesignerOptions getOptions() {
return options;
}
public void setOptions(DesignerOptions options) {
this.options = options;
}
public SamplerRequest assertions(List assertions) {
this.assertions = assertions;
return this;
}
public SamplerRequest addAssertionsItem(Assertion assertionsItem) {
if (this.assertions == null) {
this.assertions = new ArrayList<>();
}
this.assertions.add(assertionsItem);
return this;
}
/**
* Assertions to apply
* @return assertions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Assertions to apply")
@JsonProperty(JSON_PROPERTY_ASSERTIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getAssertions() {
return assertions;
}
public void setAssertions(List assertions) {
this.assertions = assertions;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SamplerRequest samplerRequest = (SamplerRequest) o;
return Objects.equals(this.project, samplerRequest.project) &&
Objects.equals(this.ruleset, samplerRequest.ruleset) &&
Objects.equals(this.version, samplerRequest.version) &&
Objects.equals(this.properties, samplerRequest.properties) &&
Objects.equals(this.filter, samplerRequest.filter) &&
Objects.equals(this.inputs, samplerRequest.inputs) &&
Objects.equals(this.outputs, samplerRequest.outputs) &&
Objects.equals(this.options, samplerRequest.options) &&
Objects.equals(this.assertions, samplerRequest.assertions);
}
@Override
public int hashCode() {
return Objects.hash(project, ruleset, version, properties, filter, inputs, outputs, options, assertions);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SamplerRequest {\n");
sb.append(" project: ").append(toIndentedString(project)).append("\n");
sb.append(" ruleset: ").append(toIndentedString(ruleset)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" properties: ").append(toIndentedString(properties)).append("\n");
sb.append(" filter: ").append(toIndentedString(filter)).append("\n");
sb.append(" inputs: ").append(toIndentedString(inputs)).append("\n");
sb.append(" outputs: ").append(toIndentedString(outputs)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).append("\n");
sb.append(" assertions: ").append(toIndentedString(assertions)).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 ");
}
}