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

io.nem.symbol.sdk.openapi.okhttp_gson.model.EmbeddedVotingKeyLinkTransactionDTO Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
/*
 * 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.nem.symbol.sdk.openapi.okhttp_gson.model.EmbeddedTransactionDTO;
import io.nem.symbol.sdk.openapi.okhttp_gson.model.LinkActionEnum;
import io.nem.symbol.sdk.openapi.okhttp_gson.model.NetworkTypeEnum;
import io.nem.symbol.sdk.openapi.okhttp_gson.model.VotingKeyLinkTransactionBodyDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;

/**
 * EmbeddedVotingKeyLinkTransactionDTO
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-06-30T14:27:18.729Z[UTC]")
public class EmbeddedVotingKeyLinkTransactionDTO {
  public static final String SERIALIZED_NAME_SIGNER_PUBLIC_KEY = "signerPublicKey";
  @SerializedName(SERIALIZED_NAME_SIGNER_PUBLIC_KEY)
  private String signerPublicKey;

  public static final String SERIALIZED_NAME_VERSION = "version";
  @SerializedName(SERIALIZED_NAME_VERSION)
  private Integer version;

  public static final String SERIALIZED_NAME_NETWORK = "network";
  @SerializedName(SERIALIZED_NAME_NETWORK)
  private NetworkTypeEnum network;

  public static final String SERIALIZED_NAME_TYPE = "type";
  @SerializedName(SERIALIZED_NAME_TYPE)
  private Integer type;

  public static final String SERIALIZED_NAME_LINKED_PUBLIC_KEY = "linkedPublicKey";
  @SerializedName(SERIALIZED_NAME_LINKED_PUBLIC_KEY)
  private String linkedPublicKey;

  public static final String SERIALIZED_NAME_START_POINT = "startPoint";
  @SerializedName(SERIALIZED_NAME_START_POINT)
  private java.math.BigInteger startPoint = null;

  public static final String SERIALIZED_NAME_END_POINT = "endPoint";
  @SerializedName(SERIALIZED_NAME_END_POINT)
  private java.math.BigInteger endPoint = null;

  public static final String SERIALIZED_NAME_LINK_ACTION = "linkAction";
  @SerializedName(SERIALIZED_NAME_LINK_ACTION)
  private LinkActionEnum linkAction;


  public EmbeddedVotingKeyLinkTransactionDTO signerPublicKey(String signerPublicKey) {
    
    this.signerPublicKey = signerPublicKey;
    return this;
  }

   /**
   * Public key.
   * @return signerPublicKey
  **/
  @ApiModelProperty(example = "AC1A6E1D8DE5B17D2C6B1293F1CAD3829EEACF38D09311BB3C8E5A880092DE26", required = true, value = "Public key.")

  public String getSignerPublicKey() {
    return signerPublicKey;
  }


  public void setSignerPublicKey(String signerPublicKey) {
    this.signerPublicKey = signerPublicKey;
  }


  public EmbeddedVotingKeyLinkTransactionDTO version(Integer version) {
    
    this.version = version;
    return this;
  }

   /**
   * Entity version.
   * @return version
  **/
  @ApiModelProperty(required = true, value = "Entity version.")

  public Integer getVersion() {
    return version;
  }


  public void setVersion(Integer version) {
    this.version = version;
  }


  public EmbeddedVotingKeyLinkTransactionDTO network(NetworkTypeEnum network) {
    
    this.network = network;
    return this;
  }

   /**
   * Get network
   * @return network
  **/
  @ApiModelProperty(required = true, value = "")

  public NetworkTypeEnum getNetwork() {
    return network;
  }


  public void setNetwork(NetworkTypeEnum network) {
    this.network = network;
  }


  public EmbeddedVotingKeyLinkTransactionDTO type(Integer type) {
    
    this.type = type;
    return this;
  }

   /**
   * Get type
   * @return type
  **/
  @ApiModelProperty(required = true, value = "")

  public Integer getType() {
    return type;
  }


  public void setType(Integer type) {
    this.type = type;
  }


  public EmbeddedVotingKeyLinkTransactionDTO linkedPublicKey(String linkedPublicKey) {
    
    this.linkedPublicKey = linkedPublicKey;
    return this;
  }

   /**
   * 48 bytes voting public key.
   * @return linkedPublicKey
  **/
  @ApiModelProperty(example = "4EDDA97C991A0BF44E0570B0BA0E0F7F1CE821A799726888734F28DDCCE8C5911F82C8663A2CB9C2215A28BD6A2E1F4D", required = true, value = "48 bytes voting public key.")

  public String getLinkedPublicKey() {
    return linkedPublicKey;
  }


  public void setLinkedPublicKey(String linkedPublicKey) {
    this.linkedPublicKey = linkedPublicKey;
  }


  public EmbeddedVotingKeyLinkTransactionDTO startPoint(java.math.BigInteger startPoint) {
    
    this.startPoint = startPoint;
    return this;
  }

   /**
   * Finalization point
   * @return startPoint
  **/
  @ApiModelProperty(example = "123456", required = true, value = "Finalization point")

  public java.math.BigInteger getStartPoint() {
    return startPoint;
  }


  public void setStartPoint(java.math.BigInteger startPoint) {
    this.startPoint = startPoint;
  }


  public EmbeddedVotingKeyLinkTransactionDTO endPoint(java.math.BigInteger endPoint) {
    
    this.endPoint = endPoint;
    return this;
  }

   /**
   * Finalization point
   * @return endPoint
  **/
  @ApiModelProperty(example = "123456", required = true, value = "Finalization point")

  public java.math.BigInteger getEndPoint() {
    return endPoint;
  }


  public void setEndPoint(java.math.BigInteger endPoint) {
    this.endPoint = endPoint;
  }


  public EmbeddedVotingKeyLinkTransactionDTO linkAction(LinkActionEnum linkAction) {
    
    this.linkAction = linkAction;
    return this;
  }

   /**
   * Get linkAction
   * @return linkAction
  **/
  @ApiModelProperty(required = true, value = "")

  public LinkActionEnum getLinkAction() {
    return linkAction;
  }


  public void setLinkAction(LinkActionEnum linkAction) {
    this.linkAction = linkAction;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    EmbeddedVotingKeyLinkTransactionDTO embeddedVotingKeyLinkTransactionDTO = (EmbeddedVotingKeyLinkTransactionDTO) o;
    return Objects.equals(this.signerPublicKey, embeddedVotingKeyLinkTransactionDTO.signerPublicKey) &&
        Objects.equals(this.version, embeddedVotingKeyLinkTransactionDTO.version) &&
        Objects.equals(this.network, embeddedVotingKeyLinkTransactionDTO.network) &&
        Objects.equals(this.type, embeddedVotingKeyLinkTransactionDTO.type) &&
        Objects.equals(this.linkedPublicKey, embeddedVotingKeyLinkTransactionDTO.linkedPublicKey) &&
        Objects.equals(this.startPoint, embeddedVotingKeyLinkTransactionDTO.startPoint) &&
        Objects.equals(this.endPoint, embeddedVotingKeyLinkTransactionDTO.endPoint) &&
        Objects.equals(this.linkAction, embeddedVotingKeyLinkTransactionDTO.linkAction);
  }

  @Override
  public int hashCode() {
    return Objects.hash(signerPublicKey, version, network, type, linkedPublicKey, startPoint, endPoint, linkAction);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class EmbeddedVotingKeyLinkTransactionDTO {\n");
    sb.append("    signerPublicKey: ").append(toIndentedString(signerPublicKey)).append("\n");
    sb.append("    version: ").append(toIndentedString(version)).append("\n");
    sb.append("    network: ").append(toIndentedString(network)).append("\n");
    sb.append("    type: ").append(toIndentedString(type)).append("\n");
    sb.append("    linkedPublicKey: ").append(toIndentedString(linkedPublicKey)).append("\n");
    sb.append("    startPoint: ").append(toIndentedString(startPoint)).append("\n");
    sb.append("    endPoint: ").append(toIndentedString(endPoint)).append("\n");
    sb.append("    linkAction: ").append(toIndentedString(linkAction)).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