io.nem.symbol.sdk.openapi.okhttp_gson.model.TransactionFeesDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symbol-openapi-okhttp-gson-client Show documentation
Show all versions of symbol-openapi-okhttp-gson-client Show documentation
symbol-openapi-okhttp-gson-client Generated Open API client for symbol-sdk-java
/*
* Catapult REST Endpoints
* OpenAPI Specification of catapult-rest 1.1.2
*
* The version of the OpenAPI document: 0.9.4
*
*
* 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.okhttp_gson.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* TransactionFeesDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-06-30T14:27:18.729Z[UTC]")
public class TransactionFeesDTO {
public static final String SERIALIZED_NAME_AVERAGE_FEE_MULTIPLIER = "averageFeeMultiplier";
@SerializedName(SERIALIZED_NAME_AVERAGE_FEE_MULTIPLIER)
private Long averageFeeMultiplier;
public static final String SERIALIZED_NAME_MEDIAN_FEE_MULTIPLIER = "medianFeeMultiplier";
@SerializedName(SERIALIZED_NAME_MEDIAN_FEE_MULTIPLIER)
private Long medianFeeMultiplier;
public static final String SERIALIZED_NAME_HIGHEST_FEE_MULTIPLIER = "highestFeeMultiplier";
@SerializedName(SERIALIZED_NAME_HIGHEST_FEE_MULTIPLIER)
private Long highestFeeMultiplier;
public static final String SERIALIZED_NAME_LOWEST_FEE_MULTIPLIER = "lowestFeeMultiplier";
@SerializedName(SERIALIZED_NAME_LOWEST_FEE_MULTIPLIER)
private Long lowestFeeMultiplier;
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.")
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.")
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.")
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.")
public Long getLowestFeeMultiplier() {
return lowestFeeMultiplier;
}
public void setLowestFeeMultiplier(Long lowestFeeMultiplier) {
this.lowestFeeMultiplier = lowestFeeMultiplier;
}
@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);
}
@Override
public int hashCode() {
return Objects.hash(averageFeeMultiplier, medianFeeMultiplier, highestFeeMultiplier, lowestFeeMultiplier);
}
@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("}");
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 ");
}
}