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

io.nem.sdk.openapi.okhttp_gson.model.AccountMetadataTransactionBodyDTO Maven / Gradle / Ivy

There is a newer version: 0.8.4
Show newest version
/*
 * Catapult REST Endpoints
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.7.21
 * 
 *
 * 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.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;

/**
 * AccountMetadataTransactionBodyDTO
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-23T10:27:05.030209+01:00[Europe/Madrid]")
public class AccountMetadataTransactionBodyDTO {
  public static final String SERIALIZED_NAME_TARGET_PUBLIC_KEY = "targetPublicKey";
  @SerializedName(SERIALIZED_NAME_TARGET_PUBLIC_KEY)
  private String targetPublicKey;

  public static final String SERIALIZED_NAME_SCOPED_METADATA_KEY = "scopedMetadataKey";
  @SerializedName(SERIALIZED_NAME_SCOPED_METADATA_KEY)
  private String scopedMetadataKey;

  public static final String SERIALIZED_NAME_VALUE_SIZE_DELTA = "valueSizeDelta";
  @SerializedName(SERIALIZED_NAME_VALUE_SIZE_DELTA)
  private Integer valueSizeDelta;

  public static final String SERIALIZED_NAME_VALUE_SIZE = "valueSize";
  @SerializedName(SERIALIZED_NAME_VALUE_SIZE)
  private Integer valueSize;

  public static final String SERIALIZED_NAME_VALUE = "value";
  @SerializedName(SERIALIZED_NAME_VALUE)
  private String value;

  public AccountMetadataTransactionBodyDTO targetPublicKey(String targetPublicKey) {
    this.targetPublicKey = targetPublicKey;
    return this;
  }

   /**
   * Get targetPublicKey
   * @return targetPublicKey
  **/
  @ApiModelProperty(example = "AC1A6E1D8DE5B17D2C6B1293F1CAD3829EEACF38D09311BB3C8E5A880092DE26", required = true, value = "")
  public String getTargetPublicKey() {
    return targetPublicKey;
  }

  public void setTargetPublicKey(String targetPublicKey) {
    this.targetPublicKey = targetPublicKey;
  }

  public AccountMetadataTransactionBodyDTO scopedMetadataKey(String scopedMetadataKey) {
    this.scopedMetadataKey = scopedMetadataKey;
    return this;
  }

   /**
   * Metadata key scoped to source, target and type.
   * @return scopedMetadataKey
  **/
  @ApiModelProperty(example = "0DC67FBE1CAD29E3", required = true, value = "Metadata key scoped to source, target and type.")
  public String getScopedMetadataKey() {
    return scopedMetadataKey;
  }

  public void setScopedMetadataKey(String scopedMetadataKey) {
    this.scopedMetadataKey = scopedMetadataKey;
  }

  public AccountMetadataTransactionBodyDTO valueSizeDelta(Integer valueSizeDelta) {
    this.valueSizeDelta = valueSizeDelta;
    return this;
  }

   /**
   * Change in value size in bytes.
   * @return valueSizeDelta
  **/
  @ApiModelProperty(required = true, value = "Change in value size in bytes.")
  public Integer getValueSizeDelta() {
    return valueSizeDelta;
  }

  public void setValueSizeDelta(Integer valueSizeDelta) {
    this.valueSizeDelta = valueSizeDelta;
  }

  public AccountMetadataTransactionBodyDTO valueSize(Integer valueSize) {
    this.valueSize = valueSize;
    return this;
  }

   /**
   * Value size in bytes.
   * @return valueSize
  **/
  @ApiModelProperty(required = true, value = "Value size in bytes.")
  public Integer getValueSize() {
    return valueSize;
  }

  public void setValueSize(Integer valueSize) {
    this.valueSize = valueSize;
  }

  public AccountMetadataTransactionBodyDTO value(String value) {
    this.value = value;
    return this;
  }

   /**
   * When there is an existing value, the new value is calculated as xor(previous-value, value).
   * @return value
  **/
  @ApiModelProperty(required = true, value = "When there is an existing value, the new value is calculated as xor(previous-value, value).")
  public String getValue() {
    return value;
  }

  public void setValue(String value) {
    this.value = value;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    AccountMetadataTransactionBodyDTO accountMetadataTransactionBodyDTO = (AccountMetadataTransactionBodyDTO) o;
    return Objects.equals(this.targetPublicKey, accountMetadataTransactionBodyDTO.targetPublicKey) &&
        Objects.equals(this.scopedMetadataKey, accountMetadataTransactionBodyDTO.scopedMetadataKey) &&
        Objects.equals(this.valueSizeDelta, accountMetadataTransactionBodyDTO.valueSizeDelta) &&
        Objects.equals(this.valueSize, accountMetadataTransactionBodyDTO.valueSize) &&
        Objects.equals(this.value, accountMetadataTransactionBodyDTO.value);
  }

  @Override
  public int hashCode() {
    return Objects.hash(targetPublicKey, scopedMetadataKey, valueSizeDelta, valueSize, value);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class AccountMetadataTransactionBodyDTO {\n");
    sb.append("    targetPublicKey: ").append(toIndentedString(targetPublicKey)).append("\n");
    sb.append("    scopedMetadataKey: ").append(toIndentedString(scopedMetadataKey)).append("\n");
    sb.append("    valueSizeDelta: ").append(toIndentedString(valueSizeDelta)).append("\n");
    sb.append("    valueSize: ").append(toIndentedString(valueSize)).append("\n");
    sb.append("    value: ").append(toIndentedString(value)).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