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

com.seeq.model.WorkbenchItemOutputListV1 Maven / Gradle / Ivy

There is a newer version: 66.0.0-v202407310200
Show newest version
/*
 * Seeq REST API
 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
 *
 * OpenAPI spec version: 64.3.0-v202405012032
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */

package com.seeq.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.ItemPreviewV1;
import com.seeq.model.WorkbenchSearchResultPreviewV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
 * WorkbenchItemOutputListV1
 */
public class WorkbenchItemOutputListV1 {
  @JsonProperty("content")
  private List content = new ArrayList();

  @JsonProperty("limit")
  private Integer limit = null;

  @JsonProperty("next")
  private String next = null;

  @JsonProperty("offset")
  private Integer offset = null;

  @JsonProperty("path")
  private List path = new ArrayList();

  @JsonProperty("prev")
  private String prev = null;

  @JsonProperty("statusMessage")
  private String statusMessage = null;

  @JsonProperty("totalResults")
  private Integer totalResults = null;

  public WorkbenchItemOutputListV1 content(List content) {
    this.content = content;
    return this;
  }

  public WorkbenchItemOutputListV1 addContentItem(WorkbenchSearchResultPreviewV1 contentItem) {
    if (this.content == null) {
      this.content = new ArrayList();
    }
    this.content.add(contentItem);
    return this;
  }

   /**
   * Workbench items
   * @return content
  **/
  @Schema(description = "Workbench items")
  public List getContent() {
    return content;
  }

  public void setContent(List content) {
    this.content = content;
  }

  public WorkbenchItemOutputListV1 limit(Integer limit) {
    this.limit = limit;
    return this;
  }

   /**
   * The pagination limit, the total number of collection items that will be returned in this page of results
   * @return limit
  **/
  @Schema(description = "The pagination limit, the total number of collection items that will be returned in this page of results")
  public Integer getLimit() {
    return limit;
  }

  public void setLimit(Integer limit) {
    this.limit = limit;
  }

  public WorkbenchItemOutputListV1 next(String next) {
    this.next = next;
    return this;
  }

   /**
   * The href of the next set of paginated results
   * @return next
  **/
  @Schema(description = "The href of the next set of paginated results")
  public String getNext() {
    return next;
  }

  public void setNext(String next) {
    this.next = next;
  }

  public WorkbenchItemOutputListV1 offset(Integer offset) {
    this.offset = offset;
    return this;
  }

   /**
   * The pagination offset, the index of the first collection item that will be returned in this page of results
   * @return offset
  **/
  @Schema(description = "The pagination offset, the index of the first collection item that will be returned in this page of results")
  public Integer getOffset() {
    return offset;
  }

  public void setOffset(Integer offset) {
    this.offset = offset;
  }

  public WorkbenchItemOutputListV1 path(List path) {
    this.path = path;
    return this;
  }

  public WorkbenchItemOutputListV1 addPathItem(ItemPreviewV1 pathItem) {
    if (this.path == null) {
      this.path = new ArrayList();
    }
    this.path.add(pathItem);
    return this;
  }

   /**
   * The list of folders that specify where this these items are in the folder hierarchy.
   * @return path
  **/
  @Schema(description = "The list of folders that specify where this these items are in the folder hierarchy.")
  public List getPath() {
    return path;
  }

  public void setPath(List path) {
    this.path = path;
  }

  public WorkbenchItemOutputListV1 prev(String prev) {
    this.prev = prev;
    return this;
  }

   /**
   * The href of the previous set of paginated results
   * @return prev
  **/
  @Schema(description = "The href of the previous set of paginated results")
  public String getPrev() {
    return prev;
  }

  public void setPrev(String prev) {
    this.prev = prev;
  }

  public WorkbenchItemOutputListV1 statusMessage(String statusMessage) {
    this.statusMessage = statusMessage;
    return this;
  }

   /**
   * A plain language status message with information about any issues that may have been encountered during an operation. Null if the status message has not been set.
   * @return statusMessage
  **/
  @Schema(description = "A plain language status message with information about any issues that may have been encountered during an operation. Null if the status message has not been set.")
  public String getStatusMessage() {
    return statusMessage;
  }

  public void setStatusMessage(String statusMessage) {
    this.statusMessage = statusMessage;
  }

  public WorkbenchItemOutputListV1 totalResults(Integer totalResults) {
    this.totalResults = totalResults;
    return this;
  }

   /**
   * The total number of items
   * @return totalResults
  **/
  @Schema(required = true, description = "The total number of items")
  public Integer getTotalResults() {
    return totalResults;
  }

  public void setTotalResults(Integer totalResults) {
    this.totalResults = totalResults;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    WorkbenchItemOutputListV1 workbenchItemOutputListV1 = (WorkbenchItemOutputListV1) o;
    return Objects.equals(this.content, workbenchItemOutputListV1.content) &&
        Objects.equals(this.limit, workbenchItemOutputListV1.limit) &&
        Objects.equals(this.next, workbenchItemOutputListV1.next) &&
        Objects.equals(this.offset, workbenchItemOutputListV1.offset) &&
        Objects.equals(this.path, workbenchItemOutputListV1.path) &&
        Objects.equals(this.prev, workbenchItemOutputListV1.prev) &&
        Objects.equals(this.statusMessage, workbenchItemOutputListV1.statusMessage) &&
        Objects.equals(this.totalResults, workbenchItemOutputListV1.totalResults);
  }

  @Override
  public int hashCode() {
    return Objects.hash(content, limit, next, offset, path, prev, statusMessage, totalResults);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class WorkbenchItemOutputListV1 {\n");
    
    sb.append("    content: ").append(toIndentedString(content)).append("\n");
    sb.append("    limit: ").append(toIndentedString(limit)).append("\n");
    sb.append("    next: ").append(toIndentedString(next)).append("\n");
    sb.append("    offset: ").append(toIndentedString(offset)).append("\n");
    sb.append("    path: ").append(toIndentedString(path)).append("\n");
    sb.append("    prev: ").append(toIndentedString(prev)).append("\n");
    sb.append("    statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
    sb.append("    totalResults: ").append(toIndentedString(totalResults)).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