io.proximax.sdk.gen.model.EmbeddedSecretLockTransactionDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-xpx-chain-sdk Show documentation
Show all versions of java-xpx-chain-sdk Show documentation
The ProximaX Sirius Chain Java SDK is a Java library for interacting with the Sirius Blockchain.
The newest version!
/*
* Catapult REST API Reference
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.7.15
*
*
* 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.proximax.sdk.gen.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.proximax.sdk.gen.model.EmbeddedTransactionDTO;
import io.proximax.sdk.gen.model.EntityTypeEnum;
import io.proximax.sdk.gen.model.HashAlgorithmEnum;
import io.proximax.sdk.gen.model.SecretLockTransactionBodyDTO;
import io.proximax.sdk.gen.model.UInt64DTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* EmbeddedSecretLockTransactionDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-09-22T22:57:50.932+02:00[Europe/Prague]")
public class EmbeddedSecretLockTransactionDTO {
public static final String SERIALIZED_NAME_SIGNER = "signer";
@SerializedName(SERIALIZED_NAME_SIGNER)
private String signer;
public static final String SERIALIZED_NAME_VERSION = "version";
@SerializedName(SERIALIZED_NAME_VERSION)
private Integer version;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private EntityTypeEnum type;
public static final String SERIALIZED_NAME_MAX_FEE = "max_fee";
@SerializedName(SERIALIZED_NAME_MAX_FEE)
private UInt64DTO maxFee = new UInt64DTO();
public static final String SERIALIZED_NAME_DEADLINE = "deadline";
@SerializedName(SERIALIZED_NAME_DEADLINE)
private UInt64DTO deadline = new UInt64DTO();
public static final String SERIALIZED_NAME_DURATION = "duration";
@SerializedName(SERIALIZED_NAME_DURATION)
private UInt64DTO duration = new UInt64DTO();
public static final String SERIALIZED_NAME_MOSAIC_ID = "mosaicId";
@SerializedName(SERIALIZED_NAME_MOSAIC_ID)
private UInt64DTO mosaicId = new UInt64DTO();
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private UInt64DTO amount = new UInt64DTO();
public static final String SERIALIZED_NAME_HASH_ALGORITHM = "hashAlgorithm";
@SerializedName(SERIALIZED_NAME_HASH_ALGORITHM)
private HashAlgorithmEnum hashAlgorithm;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_RECIPIENT = "recipient";
@SerializedName(SERIALIZED_NAME_RECIPIENT)
private String recipient;
public EmbeddedSecretLockTransactionDTO signer(String signer) {
this.signer = signer;
return this;
}
/**
* The public key of the entity signer formatted as hexadecimal.
* @return signer
**/
@ApiModelProperty(example = "D799E559AB735A5E62187306E80C1679EE3E1170532280C968D974E351CB412F", required = true, value = "The public key of the entity signer formatted as hexadecimal.")
public String getSigner() {
return signer;
}
public void setSigner(String signer) {
this.signer = signer;
}
public EmbeddedSecretLockTransactionDTO version(Integer version) {
this.version = version;
return this;
}
/**
* The entity version. The higher byte represents the network identifier: * 0x68 (MAIN_NET) - Public main network. * 0x98 (TEST_NET) - Public test network. * 0x60 (MIJIN) - Private network. * 0x90 (MIJIN_TEST) - Private test network.
* @return version
**/
@ApiModelProperty(example = "36867", required = true, value = "The entity version. The higher byte represents the network identifier: * 0x68 (MAIN_NET) - Public main network. * 0x98 (TEST_NET) - Public test network. * 0x60 (MIJIN) - Private network. * 0x90 (MIJIN_TEST) - Private test network. ")
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
public EmbeddedSecretLockTransactionDTO type(EntityTypeEnum type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public EntityTypeEnum getType() {
return type;
}
public void setType(EntityTypeEnum type) {
this.type = type;
}
public EmbeddedSecretLockTransactionDTO maxFee(UInt64DTO maxFee) {
this.maxFee = maxFee;
return this;
}
/**
* Get maxFee
* @return maxFee
**/
@ApiModelProperty(required = true, value = "")
public UInt64DTO getMaxFee() {
return maxFee;
}
public void setMaxFee(UInt64DTO maxFee) {
this.maxFee = maxFee;
}
public EmbeddedSecretLockTransactionDTO deadline(UInt64DTO deadline) {
this.deadline = deadline;
return this;
}
/**
* Get deadline
* @return deadline
**/
@ApiModelProperty(required = true, value = "")
public UInt64DTO getDeadline() {
return deadline;
}
public void setDeadline(UInt64DTO deadline) {
this.deadline = deadline;
}
public EmbeddedSecretLockTransactionDTO duration(UInt64DTO duration) {
this.duration = duration;
return this;
}
/**
* Get duration
* @return duration
**/
@ApiModelProperty(required = true, value = "")
public UInt64DTO getDuration() {
return duration;
}
public void setDuration(UInt64DTO duration) {
this.duration = duration;
}
public EmbeddedSecretLockTransactionDTO mosaicId(UInt64DTO mosaicId) {
this.mosaicId = mosaicId;
return this;
}
/**
* Get mosaicId
* @return mosaicId
**/
@ApiModelProperty(required = true, value = "")
public UInt64DTO getMosaicId() {
return mosaicId;
}
public void setMosaicId(UInt64DTO mosaicId) {
this.mosaicId = mosaicId;
}
public EmbeddedSecretLockTransactionDTO amount(UInt64DTO amount) {
this.amount = amount;
return this;
}
/**
* Get amount
* @return amount
**/
@ApiModelProperty(required = true, value = "")
public UInt64DTO getAmount() {
return amount;
}
public void setAmount(UInt64DTO amount) {
this.amount = amount;
}
public EmbeddedSecretLockTransactionDTO hashAlgorithm(HashAlgorithmEnum hashAlgorithm) {
this.hashAlgorithm = hashAlgorithm;
return this;
}
/**
* Get hashAlgorithm
* @return hashAlgorithm
**/
@ApiModelProperty(required = true, value = "")
public HashAlgorithmEnum getHashAlgorithm() {
return hashAlgorithm;
}
public void setHashAlgorithm(HashAlgorithmEnum hashAlgorithm) {
this.hashAlgorithm = hashAlgorithm;
}
public EmbeddedSecretLockTransactionDTO secret(String secret) {
this.secret = secret;
return this;
}
/**
* The proof hashed.
* @return secret
**/
@ApiModelProperty(example = "759DE013523D2C36F54BA184611AC887C6C994412E28B35221098E084050249B", required = true, value = "The proof hashed.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public EmbeddedSecretLockTransactionDTO recipient(String recipient) {
this.recipient = recipient;
return this;
}
/**
* The address in hexadecimal that will receive the funds once the transaction is unlocked.
* @return recipient
**/
@ApiModelProperty(example = "90829855740901BAA6EF35C91CF00D0059212BF49FBAEC3277", required = true, value = "The address in hexadecimal that will receive the funds once the transaction is unlocked.")
public String getRecipient() {
return recipient;
}
public void setRecipient(String recipient) {
this.recipient = recipient;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmbeddedSecretLockTransactionDTO embeddedSecretLockTransactionDTO = (EmbeddedSecretLockTransactionDTO) o;
return Objects.equals(this.signer, embeddedSecretLockTransactionDTO.signer) &&
Objects.equals(this.version, embeddedSecretLockTransactionDTO.version) &&
Objects.equals(this.type, embeddedSecretLockTransactionDTO.type) &&
Objects.equals(this.maxFee, embeddedSecretLockTransactionDTO.maxFee) &&
Objects.equals(this.deadline, embeddedSecretLockTransactionDTO.deadline) &&
Objects.equals(this.duration, embeddedSecretLockTransactionDTO.duration) &&
Objects.equals(this.mosaicId, embeddedSecretLockTransactionDTO.mosaicId) &&
Objects.equals(this.amount, embeddedSecretLockTransactionDTO.amount) &&
Objects.equals(this.hashAlgorithm, embeddedSecretLockTransactionDTO.hashAlgorithm) &&
Objects.equals(this.secret, embeddedSecretLockTransactionDTO.secret) &&
Objects.equals(this.recipient, embeddedSecretLockTransactionDTO.recipient);
}
@Override
public int hashCode() {
return Objects.hash(signer, version, type, maxFee, deadline, duration, mosaicId, amount, hashAlgorithm, secret, recipient);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmbeddedSecretLockTransactionDTO {\n");
sb.append(" signer: ").append(toIndentedString(signer)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" maxFee: ").append(toIndentedString(maxFee)).append("\n");
sb.append(" deadline: ").append(toIndentedString(deadline)).append("\n");
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
sb.append(" mosaicId: ").append(toIndentedString(mosaicId)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" hashAlgorithm: ").append(toIndentedString(hashAlgorithm)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" recipient: ").append(toIndentedString(recipient)).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 ");
}
}