All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.logicdrop.openapi.models.SampleRequest Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
/*
 * 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;

/**
 * SampleRequest
 */
@JsonPropertyOrder({
  SampleRequest.JSON_PROPERTY_PROJECT,
  SampleRequest.JSON_PROPERTY_RULESET,
  SampleRequest.JSON_PROPERTY_VERSION,
  SampleRequest.JSON_PROPERTY_PROPERTIES,
  SampleRequest.JSON_PROPERTY_FILTER,
  SampleRequest.JSON_PROPERTY_INPUTS,
  SampleRequest.JSON_PROPERTY_OUTPUTS,
  SampleRequest.JSON_PROPERTY_OPTIONS,
  SampleRequest.JSON_PROPERTY_ASSERTIONS
})

public class SampleRequest {
  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 SampleRequest 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 SampleRequest 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 SampleRequest 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 SampleRequest properties(Map properties) {
    
    this.properties = properties;
    return this;
  }

  public SampleRequest 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 SampleRequest filter(List filter) {
    
    this.filter = filter;
    return this;
  }

  public SampleRequest 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 SampleRequest inputs(List> inputs) {
    
    this.inputs = inputs;
    return this;
  }

  public SampleRequest 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 SampleRequest outputs(List outputs) {
    
    this.outputs = outputs;
    return this;
  }

  public SampleRequest 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 SampleRequest 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 SampleRequest assertions(List assertions) {
    
    this.assertions = assertions;
    return this;
  }

  public SampleRequest 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;
    }
    SampleRequest sampleRequest = (SampleRequest) o;
    return Objects.equals(this.project, sampleRequest.project) &&
        Objects.equals(this.ruleset, sampleRequest.ruleset) &&
        Objects.equals(this.version, sampleRequest.version) &&
        Objects.equals(this.properties, sampleRequest.properties) &&
        Objects.equals(this.filter, sampleRequest.filter) &&
        Objects.equals(this.inputs, sampleRequest.inputs) &&
        Objects.equals(this.outputs, sampleRequest.outputs) &&
        Objects.equals(this.options, sampleRequest.options) &&
        Objects.equals(this.assertions, sampleRequest.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 SampleRequest {\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    ");
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy