Record Class Abi.ParamsOfDecodeMessageBody

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Abi.ParamsOfDecodeMessageBody
Record Components:
abi - Contract ABI used to decode.
body - Message body BOC encoded in `base64`.
isInternal - True if the body belongs to the internal message.
allowPartial - Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)
functionName - Function name or function id if is known in advance
Enclosing class:
Abi

public static record Abi.ParamsOfDecodeMessageBody(Abi.ABI abi, String body, Boolean isInternal, Boolean allowPartial, String functionName, Abi.DataLayout dataLayout) extends Record