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

io.logicdrop.openapi.models.DeleteDataRequest 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.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

/**
 * DeleteDataRequest
 */
@JsonPropertyOrder({
  DeleteDataRequest.JSON_PROPERTY_IDS,
  DeleteDataRequest.JSON_PROPERTY_PURGE
})

public class DeleteDataRequest {
  public static final String JSON_PROPERTY_IDS = "ids";
  private List ids = new ArrayList<>();

  public static final String JSON_PROPERTY_PURGE = "purge";
  private Boolean purge;


  public DeleteDataRequest ids(List ids) {
    
    this.ids = ids;
    return this;
  }

  public DeleteDataRequest addIdsItem(String idsItem) {
    this.ids.add(idsItem);
    return this;
  }

   /**
   * ID(s) to process
   * @return ids
  **/
  @ApiModelProperty(required = true, value = "ID(s) to process")
  @JsonProperty(JSON_PROPERTY_IDS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public List getIds() {
    return ids;
  }


  public void setIds(List ids) {
    this.ids = ids;
  }


  public DeleteDataRequest purge(Boolean purge) {
    
    this.purge = purge;
    return this;
  }

   /**
   * Purge all data or allow open query?
   * @return purge
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "Purge all data or allow open query?")
  @JsonProperty(JSON_PROPERTY_PURGE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Boolean getPurge() {
    return purge;
  }


  public void setPurge(Boolean purge) {
    this.purge = purge;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DeleteDataRequest deleteDataRequest = (DeleteDataRequest) o;
    return Objects.equals(this.ids, deleteDataRequest.ids) &&
        Objects.equals(this.purge, deleteDataRequest.purge);
  }

  @Override
  public int hashCode() {
    return Objects.hash(ids, purge);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DeleteDataRequest {\n");
    sb.append("    ids: ").append(toIndentedString(ids)).append("\n");
    sb.append("    purge: ").append(toIndentedString(purge)).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 - 2024 Weber Informatics LLC | Privacy Policy