Package io.gopluslabs.client.model
Class AbiParamInfo
- java.lang.Object
-
- io.gopluslabs.client.model.AbiParamInfo
-
public class AbiParamInfo extends Object
AbiParamInfo
-
-
Field Summary
Fields Modifier and Type Field Description private AbiAddressInfoaddressInfoprivate Objectinputprivate Stringnameprivate Stringtype
-
Constructor Summary
Constructors Constructor Description AbiParamInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbiParamInfoaddressInfo(AbiAddressInfo addressInfo)booleanequals(Object o)AbiAddressInfogetAddressInfo()Get addressInfoObjectgetInput()It describes the input data in ABI.StringgetName()It describes the parameter name in ABI, for example \"_from\", \"_to\", \"_value\".StringgetType()It describes the parameter type in ABI, for example \"address\", \"uint256\", \"bool\".inthashCode()AbiParamInfoinput(Object input)AbiParamInfoname(String name)voidsetAddressInfo(AbiAddressInfo addressInfo)voidsetInput(Object input)voidsetName(String name)voidsetType(String type)private StringtoIndentedString(Object o)Convert the given object to string with each line indented by 4 spaces (except the first line).StringtoString()AbiParamInfotype(String type)
-
-
-
Field Detail
-
addressInfo
@SerializedName("address_info") private AbiAddressInfo addressInfo
-
input
@SerializedName("input") private Object input
-
name
@SerializedName("name") private String name
-
type
@SerializedName("type") private String type
-
-
Method Detail
-
addressInfo
public AbiParamInfo addressInfo(AbiAddressInfo addressInfo)
-
getAddressInfo
public AbiAddressInfo getAddressInfo()
Get addressInfo- Returns:
- addressInfo
-
setAddressInfo
public void setAddressInfo(AbiAddressInfo addressInfo)
-
input
public AbiParamInfo input(Object input)
-
getInput
public Object getInput()
It describes the input data in ABI.- Returns:
- input
-
setInput
public void setInput(Object input)
-
name
public AbiParamInfo name(String name)
-
getName
public String getName()
It describes the parameter name in ABI, for example \"_from\", \"_to\", \"_value\".- Returns:
- name
-
setName
public void setName(String name)
-
type
public AbiParamInfo type(String type)
-
getType
public String getType()
It describes the parameter type in ABI, for example \"address\", \"uint256\", \"bool\".- Returns:
- type
-
setType
public void setType(String type)
-
-