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

io.logicdrop.openapi.models.ProcessorRouteResponseAllOf 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.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;

/**
 * ProcessorRouteResponseAllOf
 */
@JsonPropertyOrder({
  ProcessorRouteResponseAllOf.JSON_PROPERTY_PROPERTIES,
  ProcessorRouteResponseAllOf.JSON_PROPERTY_DURATION,
  ProcessorRouteResponseAllOf.JSON_PROPERTY_OPTIONS,
  ProcessorRouteResponseAllOf.JSON_PROPERTY_RESULTS,
  ProcessorRouteResponseAllOf.JSON_PROPERTY_AT_TYPE
})

public class ProcessorRouteResponseAllOf {
  public static final String JSON_PROPERTY_PROPERTIES = "properties";
  private Map properties = null;

  public static final String JSON_PROPERTY_DURATION = "duration";
  private Long duration;

  public static final String JSON_PROPERTY_OPTIONS = "options";
  private Object options;

  public static final String JSON_PROPERTY_RESULTS = "results";
  private Map results = null;

  public static final String JSON_PROPERTY_AT_TYPE = "@type";
  private String atType = "ProcessorRouteResponse";


  public ProcessorRouteResponseAllOf properties(Map properties) {
    
    this.properties = properties;
    return this;
  }

  public ProcessorRouteResponseAllOf putPropertiesItem(String key, Object propertiesItem) {
    if (this.properties == null) {
      this.properties = new HashMap<>();
    }
    this.properties.put(key, propertiesItem);
    return this;
  }

   /**
   * Get properties
   * @return properties
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_PROPERTIES)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Map getProperties() {
    return properties;
  }


  public void setProperties(Map properties) {
    this.properties = properties;
  }


   /**
   * Get duration
   * @return duration
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_DURATION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Long getDuration() {
    return duration;
  }




  public ProcessorRouteResponseAllOf options(Object 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 Object getOptions() {
    return options;
  }


  public void setOptions(Object options) {
    this.options = options;
  }


  public ProcessorRouteResponseAllOf results(Map results) {
    
    this.results = results;
    return this;
  }

  public ProcessorRouteResponseAllOf putResultsItem(String key, Object resultsItem) {
    if (this.results == null) {
      this.results = new HashMap<>();
    }
    this.results.put(key, resultsItem);
    return this;
  }

   /**
   * Get results
   * @return results
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_RESULTS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Map getResults() {
    return results;
  }


  public void setResults(Map results) {
    this.results = results;
  }


   /**
   * Discriminator
   * @return atType
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "Discriminator")
  @JsonProperty(JSON_PROPERTY_AT_TYPE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getAtType() {
    return atType;
  }




  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ProcessorRouteResponseAllOf processorRouteResponseAllOf = (ProcessorRouteResponseAllOf) o;
    return Objects.equals(this.properties, processorRouteResponseAllOf.properties) &&
        Objects.equals(this.duration, processorRouteResponseAllOf.duration) &&
        Objects.equals(this.options, processorRouteResponseAllOf.options) &&
        Objects.equals(this.results, processorRouteResponseAllOf.results) &&
        Objects.equals(this.atType, processorRouteResponseAllOf.atType);
  }

  @Override
  public int hashCode() {
    return Objects.hash(properties, duration, options, results, atType);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ProcessorRouteResponseAllOf {\n");
    sb.append("    properties: ").append(toIndentedString(properties)).append("\n");
    sb.append("    duration: ").append(toIndentedString(duration)).append("\n");
    sb.append("    options: ").append(toIndentedString(options)).append("\n");
    sb.append("    results: ").append(toIndentedString(results)).append("\n");
    sb.append("    atType: ").append(toIndentedString(atType)).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