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

com.seeq.model.FormulaUpgradeOutputV1 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.FormulaUpgradeChangeV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
 * Contains upgrade information if the formula contains legacy syntax that was automatically updated
 */
@Schema(description = "Contains upgrade information if the formula contains legacy syntax that was automatically updated")
public class FormulaUpgradeOutputV1 {
  @JsonProperty("afterFormula")
  private String afterFormula = null;

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

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

  public FormulaUpgradeOutputV1 afterFormula(String afterFormula) {
    this.afterFormula = afterFormula;
    return this;
  }

   /**
   * The resulting changed formula
   * @return afterFormula
  **/
  @Schema(description = "The resulting changed formula")
  public String getAfterFormula() {
    return afterFormula;
  }

  public void setAfterFormula(String afterFormula) {
    this.afterFormula = afterFormula;
  }

  public FormulaUpgradeOutputV1 beforeFormula(String beforeFormula) {
    this.beforeFormula = beforeFormula;
    return this;
  }

   /**
   * The original input formula
   * @return beforeFormula
  **/
  @Schema(description = "The original input formula")
  public String getBeforeFormula() {
    return beforeFormula;
  }

  public void setBeforeFormula(String beforeFormula) {
    this.beforeFormula = beforeFormula;
  }

  public FormulaUpgradeOutputV1 changes(List changes) {
    this.changes = changes;
    return this;
  }

  public FormulaUpgradeOutputV1 addChangesItem(FormulaUpgradeChangeV1 changesItem) {
    if (this.changes == null) {
      this.changes = new ArrayList();
    }
    this.changes.add(changesItem);
    return this;
  }

   /**
   * Details about the specific changes
   * @return changes
  **/
  @Schema(description = "Details about the specific changes")
  public List getChanges() {
    return changes;
  }

  public void setChanges(List changes) {
    this.changes = changes;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    FormulaUpgradeOutputV1 formulaUpgradeOutputV1 = (FormulaUpgradeOutputV1) o;
    return Objects.equals(this.afterFormula, formulaUpgradeOutputV1.afterFormula) &&
        Objects.equals(this.beforeFormula, formulaUpgradeOutputV1.beforeFormula) &&
        Objects.equals(this.changes, formulaUpgradeOutputV1.changes);
  }

  @Override
  public int hashCode() {
    return Objects.hash(afterFormula, beforeFormula, changes);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class FormulaUpgradeOutputV1 {\n");
    
    sb.append("    afterFormula: ").append(toIndentedString(afterFormula)).append("\n");
    sb.append("    beforeFormula: ").append(toIndentedString(beforeFormula)).append("\n");
    sb.append("    changes: ").append(toIndentedString(changes)).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