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

com.seeq.model.AddOnOutputV1 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: 60.1.3-v202304250417
 * 
 *
 * 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.IdentityPreviewV1;
import com.seeq.model.PermissionsV1;
import io.swagger.v3.oas.annotations.media.Schema;
/**
 * AddOnOutputV1
 */
public class AddOnOutputV1 {
  @JsonProperty("addOnComponents")
  private String addOnComponents = null;

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

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

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

  @JsonProperty("effectivePermissions")
  private PermissionsV1 effectivePermissions = null;

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

  @JsonProperty("inDevelopment")
  private Boolean inDevelopment = null;

  @JsonProperty("installer")
  private IdentityPreviewV1 installer = null;

  @JsonProperty("isArchived")
  private Boolean isArchived = false;

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

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

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

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

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

  public AddOnOutputV1 addOnComponents(String addOnComponents) {
    this.addOnComponents = addOnComponents;
    return this;
  }

   /**
   * A stringified representation of the items on this server that comprise this installed add-on.
   * @return addOnComponents
  **/
  @Schema(description = "A stringified representation of the items on this server that comprise this installed add-on.")
  public String getAddOnComponents() {
    return addOnComponents;
  }

  public void setAddOnComponents(String addOnComponents) {
    this.addOnComponents = addOnComponents;
  }

  public AddOnOutputV1 addOnIdentifier(String addOnIdentifier) {
    this.addOnIdentifier = addOnIdentifier;
    return this;
  }

   /**
   * The unique identifier associated with this Add-on, shared across all Seeq server instances.
   * @return addOnIdentifier
  **/
  @Schema(description = "The unique identifier associated with this Add-on, shared across all Seeq server instances.")
  public String getAddOnIdentifier() {
    return addOnIdentifier;
  }

  public void setAddOnIdentifier(String addOnIdentifier) {
    this.addOnIdentifier = addOnIdentifier;
  }

  public AddOnOutputV1 createdAt(String createdAt) {
    this.createdAt = createdAt;
    return this;
  }

   /**
   * The ISO 8601 date of when the add-on was created (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).
   * @return createdAt
  **/
  @Schema(description = "The ISO 8601 date of when the add-on was created (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).")
  public String getCreatedAt() {
    return createdAt;
  }

  public void setCreatedAt(String createdAt) {
    this.createdAt = createdAt;
  }

  public AddOnOutputV1 description(String description) {
    this.description = description;
    return this;
  }

   /**
   * Clarifying information or other plain language description of this item
   * @return description
  **/
  @Schema(description = "Clarifying information or other plain language description of this item")
  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public AddOnOutputV1 effectivePermissions(PermissionsV1 effectivePermissions) {
    this.effectivePermissions = effectivePermissions;
    return this;
  }

   /**
   * Get effectivePermissions
   * @return effectivePermissions
  **/
  @Schema(description = "")
  public PermissionsV1 getEffectivePermissions() {
    return effectivePermissions;
  }

  public void setEffectivePermissions(PermissionsV1 effectivePermissions) {
    this.effectivePermissions = effectivePermissions;
  }

  public AddOnOutputV1 id(String id) {
    this.id = id;
    return this;
  }

   /**
   * The ID that can be used to interact with the item
   * @return id
  **/
  @Schema(required = true, description = "The ID that can be used to interact with the item")
  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public AddOnOutputV1 inDevelopment(Boolean inDevelopment) {
    this.inDevelopment = inDevelopment;
    return this;
  }

   /**
   * Whether this item is in Development Mode, meaning that it is not allowed to be shared with any other users.
   * @return inDevelopment
  **/
  @Schema(description = "Whether this item is in Development Mode, meaning that it is not allowed to be shared with any other users.")
  public Boolean getInDevelopment() {
    return inDevelopment;
  }

  public void setInDevelopment(Boolean inDevelopment) {
    this.inDevelopment = inDevelopment;
  }

  public AddOnOutputV1 installer(IdentityPreviewV1 installer) {
    this.installer = installer;
    return this;
  }

   /**
   * Get installer
   * @return installer
  **/
  @Schema(description = "")
  public IdentityPreviewV1 getInstaller() {
    return installer;
  }

  public void setInstaller(IdentityPreviewV1 installer) {
    this.installer = installer;
  }

   /**
   * Whether item is archived
   * @return isArchived
  **/
  @Schema(description = "Whether item is archived")
  public Boolean getIsArchived() {
    return isArchived;
  }

  public AddOnOutputV1 name(String name) {
    this.name = name;
    return this;
  }

   /**
   * The human readable name
   * @return name
  **/
  @Schema(required = true, description = "The human readable name")
  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public AddOnOutputV1 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
   * @return statusMessage
  **/
  @Schema(description = "A plain language status message with information about any issues that may have been encountered during an operation")
  public String getStatusMessage() {
    return statusMessage;
  }

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

  public AddOnOutputV1 type(String type) {
    this.type = type;
    return this;
  }

   /**
   * The type of the item
   * @return type
  **/
  @Schema(required = true, description = "The type of the item")
  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public AddOnOutputV1 updatedAt(String updatedAt) {
    this.updatedAt = updatedAt;
    return this;
  }

   /**
   * The ISO 8601 date of when the add-on was updated (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).
   * @return updatedAt
  **/
  @Schema(description = "The ISO 8601 date of when the add-on was updated (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).")
  public String getUpdatedAt() {
    return updatedAt;
  }

  public void setUpdatedAt(String updatedAt) {
    this.updatedAt = updatedAt;
  }

  public AddOnOutputV1 versionString(String versionString) {
    this.versionString = versionString;
    return this;
  }

   /**
   * The version of this add-on.
   * @return versionString
  **/
  @Schema(description = "The version of this add-on.")
  public String getVersionString() {
    return versionString;
  }

  public void setVersionString(String versionString) {
    this.versionString = versionString;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    AddOnOutputV1 addOnOutputV1 = (AddOnOutputV1) o;
    return Objects.equals(this.addOnComponents, addOnOutputV1.addOnComponents) &&
        Objects.equals(this.addOnIdentifier, addOnOutputV1.addOnIdentifier) &&
        Objects.equals(this.createdAt, addOnOutputV1.createdAt) &&
        Objects.equals(this.description, addOnOutputV1.description) &&
        Objects.equals(this.effectivePermissions, addOnOutputV1.effectivePermissions) &&
        Objects.equals(this.id, addOnOutputV1.id) &&
        Objects.equals(this.inDevelopment, addOnOutputV1.inDevelopment) &&
        Objects.equals(this.installer, addOnOutputV1.installer) &&
        Objects.equals(this.isArchived, addOnOutputV1.isArchived) &&
        Objects.equals(this.name, addOnOutputV1.name) &&
        Objects.equals(this.statusMessage, addOnOutputV1.statusMessage) &&
        Objects.equals(this.type, addOnOutputV1.type) &&
        Objects.equals(this.updatedAt, addOnOutputV1.updatedAt) &&
        Objects.equals(this.versionString, addOnOutputV1.versionString);
  }

  @Override
  public int hashCode() {
    return Objects.hash(addOnComponents, addOnIdentifier, createdAt, description, effectivePermissions, id, inDevelopment, installer, isArchived, name, statusMessage, type, updatedAt, versionString);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class AddOnOutputV1 {\n");
    
    sb.append("    addOnComponents: ").append(toIndentedString(addOnComponents)).append("\n");
    sb.append("    addOnIdentifier: ").append(toIndentedString(addOnIdentifier)).append("\n");
    sb.append("    createdAt: ").append(toIndentedString(createdAt)).append("\n");
    sb.append("    description: ").append(toIndentedString(description)).append("\n");
    sb.append("    effectivePermissions: ").append(toIndentedString(effectivePermissions)).append("\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    inDevelopment: ").append(toIndentedString(inDevelopment)).append("\n");
    sb.append("    installer: ").append(toIndentedString(installer)).append("\n");
    sb.append("    isArchived: ").append(toIndentedString(isArchived)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
    sb.append("    type: ").append(toIndentedString(type)).append("\n");
    sb.append("    updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
    sb.append("    versionString: ").append(toIndentedString(versionString)).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