Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Proofs.ParamsOfProofTransactionData
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Proofs.ParamsOfProofTransactionData
- Record Components:
transaction- Single transaction's data as queried from DApp server, without modifications. The required fields are `id` and/or top-level `boc`, others are optional. In order to reduce network requests count, it is recommended to provide `block_id` and `boc` of transaction.
- Enclosing class:
Proofs
public static record Proofs.ParamsOfProofTransactionData(com.fasterxml.jackson.databind.JsonNode transaction)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfProofTransactionData(com.fasterxml.jackson.databind.JsonNode transaction) Creates an instance of aParamsOfProofTransactionDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.com.fasterxml.jackson.databind.JsonNodeReturns the value of thetransactionrecord component.
-
Constructor Details
-
ParamsOfProofTransactionData
public ParamsOfProofTransactionData(com.fasterxml.jackson.databind.JsonNode transaction) Creates an instance of aParamsOfProofTransactionDatarecord class.- Parameters:
transaction- the value for thetransactionrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
transaction
public com.fasterxml.jackson.databind.JsonNode transaction()Returns the value of thetransactionrecord component.- Returns:
- the value of the
transactionrecord component
-