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

com.seeq.model.ConnectorInputV1 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 io.swagger.v3.oas.annotations.media.Schema;
/**
 * ConnectorInputV1
 */
public class ConnectorInputV1 {
  @JsonProperty("backupName")
  private String backupName = null;

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

  @JsonProperty("propagateToAgent")
  private Boolean propagateToAgent = true;

  public ConnectorInputV1 backupName(String backupName) {
    this.backupName = backupName;
    return this;
  }

   /**
   * The name of a connector backup to restore, when updating a connector.
   * @return backupName
  **/
  @Schema(description = "The name of a connector backup to restore, when updating a connector.")
  public String getBackupName() {
    return backupName;
  }

  public void setBackupName(String backupName) {
    this.backupName = backupName;
  }

  public ConnectorInputV1 json(String json) {
    this.json = json;
    return this;
  }

   /**
   * The connector’s json configuration.
   * @return json
  **/
  @Schema(description = "The connector’s json configuration.")
  public String getJson() {
    return json;
  }

  public void setJson(String json) {
    this.json = json;
  }

  public ConnectorInputV1 propagateToAgent(Boolean propagateToAgent) {
    this.propagateToAgent = propagateToAgent;
    return this;
  }

   /**
   * Whether the connector's json update event should propagate to the remote agent.
   * @return propagateToAgent
  **/
  @Schema(description = "Whether the connector's json update event should propagate to the remote agent.")
  public Boolean getPropagateToAgent() {
    return propagateToAgent;
  }

  public void setPropagateToAgent(Boolean propagateToAgent) {
    this.propagateToAgent = propagateToAgent;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ConnectorInputV1 connectorInputV1 = (ConnectorInputV1) o;
    return Objects.equals(this.backupName, connectorInputV1.backupName) &&
        Objects.equals(this.json, connectorInputV1.json) &&
        Objects.equals(this.propagateToAgent, connectorInputV1.propagateToAgent);
  }

  @Override
  public int hashCode() {
    return Objects.hash(backupName, json, propagateToAgent);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ConnectorInputV1 {\n");
    
    sb.append("    backupName: ").append(toIndentedString(backupName)).append("\n");
    sb.append("    json: ").append(toIndentedString(json)).append("\n");
    sb.append("    propagateToAgent: ").append(toIndentedString(propagateToAgent)).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