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

io.nem.symbol.sdk.openapi.jersey2.model.TransactionFeesDTO Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
/*
 * Catapult REST Endpoints
 * OpenAPI Specification of catapult-rest 2.3.0
 *
 * The version of the OpenAPI document: 0.11.2
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package io.nem.symbol.sdk.openapi.jersey2.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

/**
 * TransactionFeesDTO
 */
@JsonPropertyOrder({
  TransactionFeesDTO.JSON_PROPERTY_AVERAGE_FEE_MULTIPLIER,
  TransactionFeesDTO.JSON_PROPERTY_MEDIAN_FEE_MULTIPLIER,
  TransactionFeesDTO.JSON_PROPERTY_HIGHEST_FEE_MULTIPLIER,
  TransactionFeesDTO.JSON_PROPERTY_LOWEST_FEE_MULTIPLIER,
  TransactionFeesDTO.JSON_PROPERTY_MIN_FEE_MULTIPLIER
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-02-02T19:39:53.661Z[UTC]")
public class TransactionFeesDTO {
  public static final String JSON_PROPERTY_AVERAGE_FEE_MULTIPLIER = "averageFeeMultiplier";
  private Long averageFeeMultiplier;

  public static final String JSON_PROPERTY_MEDIAN_FEE_MULTIPLIER = "medianFeeMultiplier";
  private Long medianFeeMultiplier;

  public static final String JSON_PROPERTY_HIGHEST_FEE_MULTIPLIER = "highestFeeMultiplier";
  private Long highestFeeMultiplier;

  public static final String JSON_PROPERTY_LOWEST_FEE_MULTIPLIER = "lowestFeeMultiplier";
  private Long lowestFeeMultiplier;

  public static final String JSON_PROPERTY_MIN_FEE_MULTIPLIER = "minFeeMultiplier";
  private Long minFeeMultiplier;


  public TransactionFeesDTO averageFeeMultiplier(Long averageFeeMultiplier) {
    
    this.averageFeeMultiplier = averageFeeMultiplier;
    return this;
  }

   /**
   * Fee multiplier applied to transactions contained in block.
   * @return averageFeeMultiplier
  **/
  @ApiModelProperty(example = "0", required = true, value = "Fee multiplier applied to transactions contained in block.")
  @JsonProperty(JSON_PROPERTY_AVERAGE_FEE_MULTIPLIER)
  // @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Long getAverageFeeMultiplier() {
    return averageFeeMultiplier;
  }


  public void setAverageFeeMultiplier(Long averageFeeMultiplier) {
    this.averageFeeMultiplier = averageFeeMultiplier;
  }


  public TransactionFeesDTO medianFeeMultiplier(Long medianFeeMultiplier) {
    
    this.medianFeeMultiplier = medianFeeMultiplier;
    return this;
  }

   /**
   * Fee multiplier applied to transactions contained in block.
   * @return medianFeeMultiplier
  **/
  @ApiModelProperty(example = "0", required = true, value = "Fee multiplier applied to transactions contained in block.")
  @JsonProperty(JSON_PROPERTY_MEDIAN_FEE_MULTIPLIER)
  // @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Long getMedianFeeMultiplier() {
    return medianFeeMultiplier;
  }


  public void setMedianFeeMultiplier(Long medianFeeMultiplier) {
    this.medianFeeMultiplier = medianFeeMultiplier;
  }


  public TransactionFeesDTO highestFeeMultiplier(Long highestFeeMultiplier) {
    
    this.highestFeeMultiplier = highestFeeMultiplier;
    return this;
  }

   /**
   * Fee multiplier applied to transactions contained in block.
   * @return highestFeeMultiplier
  **/
  @ApiModelProperty(example = "0", required = true, value = "Fee multiplier applied to transactions contained in block.")
  @JsonProperty(JSON_PROPERTY_HIGHEST_FEE_MULTIPLIER)
  // @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Long getHighestFeeMultiplier() {
    return highestFeeMultiplier;
  }


  public void setHighestFeeMultiplier(Long highestFeeMultiplier) {
    this.highestFeeMultiplier = highestFeeMultiplier;
  }


  public TransactionFeesDTO lowestFeeMultiplier(Long lowestFeeMultiplier) {
    
    this.lowestFeeMultiplier = lowestFeeMultiplier;
    return this;
  }

   /**
   * Fee multiplier applied to transactions contained in block.
   * @return lowestFeeMultiplier
  **/
  @ApiModelProperty(example = "0", required = true, value = "Fee multiplier applied to transactions contained in block.")
  @JsonProperty(JSON_PROPERTY_LOWEST_FEE_MULTIPLIER)
  // @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Long getLowestFeeMultiplier() {
    return lowestFeeMultiplier;
  }


  public void setLowestFeeMultiplier(Long lowestFeeMultiplier) {
    this.lowestFeeMultiplier = lowestFeeMultiplier;
  }


  public TransactionFeesDTO minFeeMultiplier(Long minFeeMultiplier) {
    
    this.minFeeMultiplier = minFeeMultiplier;
    return this;
  }

   /**
   * Fee multiplier applied to transactions contained in block.
   * @return minFeeMultiplier
  **/
  @ApiModelProperty(example = "0", required = true, value = "Fee multiplier applied to transactions contained in block.")
  @JsonProperty(JSON_PROPERTY_MIN_FEE_MULTIPLIER)
  // @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Long getMinFeeMultiplier() {
    return minFeeMultiplier;
  }


  public void setMinFeeMultiplier(Long minFeeMultiplier) {
    this.minFeeMultiplier = minFeeMultiplier;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    TransactionFeesDTO transactionFeesDTO = (TransactionFeesDTO) o;
    return Objects.equals(this.averageFeeMultiplier, transactionFeesDTO.averageFeeMultiplier) &&
        Objects.equals(this.medianFeeMultiplier, transactionFeesDTO.medianFeeMultiplier) &&
        Objects.equals(this.highestFeeMultiplier, transactionFeesDTO.highestFeeMultiplier) &&
        Objects.equals(this.lowestFeeMultiplier, transactionFeesDTO.lowestFeeMultiplier) &&
        Objects.equals(this.minFeeMultiplier, transactionFeesDTO.minFeeMultiplier);
  }

  @Override
  public int hashCode() {
    return Objects.hash(averageFeeMultiplier, medianFeeMultiplier, highestFeeMultiplier, lowestFeeMultiplier, minFeeMultiplier);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class TransactionFeesDTO {\n");
    sb.append("    averageFeeMultiplier: ").append(toIndentedString(averageFeeMultiplier)).append("\n");
    sb.append("    medianFeeMultiplier: ").append(toIndentedString(medianFeeMultiplier)).append("\n");
    sb.append("    highestFeeMultiplier: ").append(toIndentedString(highestFeeMultiplier)).append("\n");
    sb.append("    lowestFeeMultiplier: ").append(toIndentedString(lowestFeeMultiplier)).append("\n");
    sb.append("    minFeeMultiplier: ").append(toIndentedString(minFeeMultiplier)).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 - 2025 Weber Informatics LLC | Privacy Policy