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: 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.JsonBackupOutputV1;
import com.seeq.model.PermissionsV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* The json configuration of a list of connectors.
*/
@Schema(description = "The json configuration of a list of connectors.")
public class ConnectorOutputV1 {
@JsonProperty("agentName")
private String agentName = null;
@JsonProperty("backups")
private List backups = new ArrayList();
@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("isArchived")
private Boolean isArchived = false;
@JsonProperty("json")
private String json = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("propagationPending")
private Boolean propagationPending = false;
@JsonProperty("statusMessage")
private String statusMessage = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("updatedAt")
private String updatedAt = null;
public ConnectorOutputV1 agentName(String agentName) {
this.agentName = agentName;
return this;
}
/**
* The name of the agent.
* @return agentName
**/
@Schema(description = "The name of the agent.")
public String getAgentName() {
return agentName;
}
public void setAgentName(String agentName) {
this.agentName = agentName;
}
public ConnectorOutputV1 backups(List backups) {
this.backups = backups;
return this;
}
public ConnectorOutputV1 addBackupsItem(JsonBackupOutputV1 backupsItem) {
if (this.backups == null) {
this.backups = new ArrayList();
}
this.backups.add(backupsItem);
return this;
}
/**
* The list of backups for this object's json property.
* @return backups
**/
@Schema(description = "The list of backups for this object's json property.")
public List getBackups() {
return backups;
}
public void setBackups(List backups) {
this.backups = backups;
}
public ConnectorOutputV1 createdAt(String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* The ISO 8601 date of when the object was created (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).
* @return createdAt
**/
@Schema(description = "The ISO 8601 date of when the object was created (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).")
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public ConnectorOutputV1 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 ConnectorOutputV1 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 ConnectorOutputV1 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;
}
/**
* Whether item is archived
* @return isArchived
**/
@Schema(description = "Whether item is archived")
public Boolean getIsArchived() {
return isArchived;
}
public ConnectorOutputV1 json(String json) {
this.json = json;
return this;
}
/**
* The connector's configuration json.
* @return json
**/
@Schema(description = "The connector's configuration json.")
public String getJson() {
return json;
}
public void setJson(String json) {
this.json = json;
}
public ConnectorOutputV1 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 ConnectorOutputV1 propagationPending(Boolean propagationPending) {
this.propagationPending = propagationPending;
return this;
}
/**
* Whether the configuration change propagation is pending.
* @return propagationPending
**/
@Schema(description = "Whether the configuration change propagation is pending.")
public Boolean getPropagationPending() {
return propagationPending;
}
public void setPropagationPending(Boolean propagationPending) {
this.propagationPending = propagationPending;
}
public ConnectorOutputV1 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 ConnectorOutputV1 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 ConnectorOutputV1 updatedAt(String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* The ISO 8601 date of when the object was updated (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).
* @return updatedAt
**/
@Schema(description = "The ISO 8601 date of when the object was updated (YYYY-MM-DDThh:mm:ss.sssssssss±hh:mm).")
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConnectorOutputV1 connectorOutputV1 = (ConnectorOutputV1) o;
return Objects.equals(this.agentName, connectorOutputV1.agentName) &&
Objects.equals(this.backups, connectorOutputV1.backups) &&
Objects.equals(this.createdAt, connectorOutputV1.createdAt) &&
Objects.equals(this.description, connectorOutputV1.description) &&
Objects.equals(this.effectivePermissions, connectorOutputV1.effectivePermissions) &&
Objects.equals(this.id, connectorOutputV1.id) &&
Objects.equals(this.isArchived, connectorOutputV1.isArchived) &&
Objects.equals(this.json, connectorOutputV1.json) &&
Objects.equals(this.name, connectorOutputV1.name) &&
Objects.equals(this.propagationPending, connectorOutputV1.propagationPending) &&
Objects.equals(this.statusMessage, connectorOutputV1.statusMessage) &&
Objects.equals(this.type, connectorOutputV1.type) &&
Objects.equals(this.updatedAt, connectorOutputV1.updatedAt);
}
@Override
public int hashCode() {
return Objects.hash(agentName, backups, createdAt, description, effectivePermissions, id, isArchived, json, name, propagationPending, statusMessage, type, updatedAt);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConnectorOutputV1 {\n");
sb.append(" agentName: ").append(toIndentedString(agentName)).append("\n");
sb.append(" backups: ").append(toIndentedString(backups)).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(" isArchived: ").append(toIndentedString(isArchived)).append("\n");
sb.append(" json: ").append(toIndentedString(json)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" propagationPending: ").append(toIndentedString(propagationPending)).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("}");
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 ");
}
}