Interface ConvertibleToBase64String
-
- All Known Subinterfaces:
ContractMethodParams
- All Known Implementing Classes:
AccountIdParam
,FTTransferParam
,NFTTokensForOwnerParam
,NFTTokensParam
public interface ConvertibleToBase64String
Adds support to convert the object to a Json as Base64String object- Since:
- 0.2.0
- Author:
- Alexandre Carvalho, Andre Bertolace
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Base64String
toJsonBase64String()
Creates a Base64String with the Json string of the object
-
-
-
Method Detail
-
toJsonBase64String
default Base64String toJsonBase64String() throws com.fasterxml.jackson.core.JsonProcessingException
Creates a Base64String with the Json string of the object- Returns:
- the Base64String
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
- thrown if it can't parse the object to Json
-
-