Interface ContractMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContractMetadata.Builder,ContractMetadata>,SdkBuilder<ContractMetadata.Builder,ContractMetadata>,SdkPojo
- Enclosing class:
- ContractMetadata
public static interface ContractMetadata.Builder extends SdkPojo, CopyableBuilder<ContractMetadata.Builder,ContractMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContractMetadata.Builderdecimals(Integer decimals)The decimals used by the token contract.ContractMetadata.Buildername(String name)The name of the token contract.ContractMetadata.Buildersymbol(String symbol)The symbol of the token contract.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
ContractMetadata.Builder name(String name)
The name of the token contract.
- Parameters:
name- The name of the token contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
symbol
ContractMetadata.Builder symbol(String symbol)
The symbol of the token contract.
- Parameters:
symbol- The symbol of the token contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
decimals
ContractMetadata.Builder decimals(Integer decimals)
The decimals used by the token contract.
- Parameters:
decimals- The decimals used by the token contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-