Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.PermissionsV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.UUID;
/**
* DisplayTemplateOutputV1
*/
public class DisplayTemplateOutputV1 {
@JsonProperty("datasourceClass")
private String datasourceClass = null;
@JsonProperty("datasourceId")
private String datasourceId = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("displayCount")
private Integer displayCount = null;
@JsonProperty("effectivePermissions")
private PermissionsV1 effectivePermissions = null;
@JsonProperty("id")
private String id = null;
@JsonProperty("isArchived")
private Boolean isArchived = false;
@JsonProperty("isRedacted")
private Boolean isRedacted = false;
@JsonProperty("name")
private String name = null;
@JsonProperty("scopedTo")
private UUID scopedTo = null;
@JsonProperty("sourceWorkstepId")
private UUID sourceWorkstepId = null;
@JsonProperty("statusMessage")
private String statusMessage = null;
@JsonProperty("swapSourceAssetId")
private UUID swapSourceAssetId = null;
@JsonProperty("translationKey")
private String translationKey = null;
@JsonProperty("type")
private String type = null;
public DisplayTemplateOutputV1 datasourceClass(String datasourceClass) {
this.datasourceClass = datasourceClass;
return this;
}
/**
* The datasource class, which is the type of system holding the item, such as OSIsoft PI
* @return datasourceClass
**/
@Schema(description = "The datasource class, which is the type of system holding the item, such as OSIsoft PI")
public String getDatasourceClass() {
return datasourceClass;
}
public void setDatasourceClass(String datasourceClass) {
this.datasourceClass = datasourceClass;
}
public DisplayTemplateOutputV1 datasourceId(String datasourceId) {
this.datasourceId = datasourceId;
return this;
}
/**
* The datasource identifier, which is how the datasource holding this item identifies itself
* @return datasourceId
**/
@Schema(description = "The datasource identifier, which is how the datasource holding this item identifies itself")
public String getDatasourceId() {
return datasourceId;
}
public void setDatasourceId(String datasourceId) {
this.datasourceId = datasourceId;
}
public DisplayTemplateOutputV1 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 DisplayTemplateOutputV1 displayCount(Integer displayCount) {
this.displayCount = displayCount;
return this;
}
/**
* The number of displays modeled after the template
* @return displayCount
**/
@Schema(description = "The number of displays modeled after the template")
public Integer getDisplayCount() {
return displayCount;
}
public void setDisplayCount(Integer displayCount) {
this.displayCount = displayCount;
}
public DisplayTemplateOutputV1 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 DisplayTemplateOutputV1 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 DisplayTemplateOutputV1 isArchived(Boolean isArchived) {
this.isArchived = isArchived;
return this;
}
/**
* Whether item is archived
* @return isArchived
**/
@Schema(description = "Whether item is archived")
public Boolean getIsArchived() {
return isArchived;
}
public void setIsArchived(Boolean isArchived) {
this.isArchived = isArchived;
}
public DisplayTemplateOutputV1 isRedacted(Boolean isRedacted) {
this.isRedacted = isRedacted;
return this;
}
/**
* Whether item is redacted
* @return isRedacted
**/
@Schema(description = "Whether item is redacted")
public Boolean getIsRedacted() {
return isRedacted;
}
public void setIsRedacted(Boolean isRedacted) {
this.isRedacted = isRedacted;
}
public DisplayTemplateOutputV1 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 DisplayTemplateOutputV1 scopedTo(UUID scopedTo) {
this.scopedTo = scopedTo;
return this;
}
/**
* The ID of the workbook to which this item is scoped or null if it is in the global scope.
* @return scopedTo
**/
@Schema(description = "The ID of the workbook to which this item is scoped or null if it is in the global scope.")
public UUID getScopedTo() {
return scopedTo;
}
public void setScopedTo(UUID scopedTo) {
this.scopedTo = scopedTo;
}
public DisplayTemplateOutputV1 sourceWorkstepId(UUID sourceWorkstepId) {
this.sourceWorkstepId = sourceWorkstepId;
return this;
}
/**
* The ID of the source workstep for the display template
* @return sourceWorkstepId
**/
@Schema(description = "The ID of the source workstep for the display template")
public UUID getSourceWorkstepId() {
return sourceWorkstepId;
}
public void setSourceWorkstepId(UUID sourceWorkstepId) {
this.sourceWorkstepId = sourceWorkstepId;
}
public DisplayTemplateOutputV1 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 DisplayTemplateOutputV1 swapSourceAssetId(UUID swapSourceAssetId) {
this.swapSourceAssetId = swapSourceAssetId;
return this;
}
/**
* The asset to swap out when loading displays based on this template
* @return swapSourceAssetId
**/
@Schema(description = "The asset to swap out when loading displays based on this template")
public UUID getSwapSourceAssetId() {
return swapSourceAssetId;
}
public void setSwapSourceAssetId(UUID swapSourceAssetId) {
this.swapSourceAssetId = swapSourceAssetId;
}
public DisplayTemplateOutputV1 translationKey(String translationKey) {
this.translationKey = translationKey;
return this;
}
/**
* The item's translation key, if any
* @return translationKey
**/
@Schema(description = "The item's translation key, if any")
public String getTranslationKey() {
return translationKey;
}
public void setTranslationKey(String translationKey) {
this.translationKey = translationKey;
}
public DisplayTemplateOutputV1 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;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DisplayTemplateOutputV1 displayTemplateOutputV1 = (DisplayTemplateOutputV1) o;
return Objects.equals(this.datasourceClass, displayTemplateOutputV1.datasourceClass) &&
Objects.equals(this.datasourceId, displayTemplateOutputV1.datasourceId) &&
Objects.equals(this.description, displayTemplateOutputV1.description) &&
Objects.equals(this.displayCount, displayTemplateOutputV1.displayCount) &&
Objects.equals(this.effectivePermissions, displayTemplateOutputV1.effectivePermissions) &&
Objects.equals(this.id, displayTemplateOutputV1.id) &&
Objects.equals(this.isArchived, displayTemplateOutputV1.isArchived) &&
Objects.equals(this.isRedacted, displayTemplateOutputV1.isRedacted) &&
Objects.equals(this.name, displayTemplateOutputV1.name) &&
Objects.equals(this.scopedTo, displayTemplateOutputV1.scopedTo) &&
Objects.equals(this.sourceWorkstepId, displayTemplateOutputV1.sourceWorkstepId) &&
Objects.equals(this.statusMessage, displayTemplateOutputV1.statusMessage) &&
Objects.equals(this.swapSourceAssetId, displayTemplateOutputV1.swapSourceAssetId) &&
Objects.equals(this.translationKey, displayTemplateOutputV1.translationKey) &&
Objects.equals(this.type, displayTemplateOutputV1.type);
}
@Override
public int hashCode() {
return Objects.hash(datasourceClass, datasourceId, description, displayCount, effectivePermissions, id, isArchived, isRedacted, name, scopedTo, sourceWorkstepId, statusMessage, swapSourceAssetId, translationKey, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DisplayTemplateOutputV1 {\n");
sb.append(" datasourceClass: ").append(toIndentedString(datasourceClass)).append("\n");
sb.append(" datasourceId: ").append(toIndentedString(datasourceId)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayCount: ").append(toIndentedString(displayCount)).append("\n");
sb.append(" effectivePermissions: ").append(toIndentedString(effectivePermissions)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" isArchived: ").append(toIndentedString(isArchived)).append("\n");
sb.append(" isRedacted: ").append(toIndentedString(isRedacted)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" scopedTo: ").append(toIndentedString(scopedTo)).append("\n");
sb.append(" sourceWorkstepId: ").append(toIndentedString(sourceWorkstepId)).append("\n");
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
sb.append(" swapSourceAssetId: ").append(toIndentedString(swapSourceAssetId)).append("\n");
sb.append(" translationKey: ").append(toIndentedString(translationKey)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}