Class AlloyListResponse.Data.Builder
-
- All Implemented Interfaces:
public final class AlloyListResponse.Data.BuilderA builder for Data.
-
-
Method Summary
-
-
Method Detail
-
id
final AlloyListResponse.Data.Builder id(String id)
Unique identifier of the Alloy asset
-
id
final AlloyListResponse.Data.Builder id(Optional<String> id)
Alias for calling Builder.id with
id.orElse(null).
-
id
final AlloyListResponse.Data.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
isTradable
final AlloyListResponse.Data.Builder isTradable(Boolean isTradable)
Indicates if tradable on Dinari platform
-
isTradable
final AlloyListResponse.Data.Builder isTradable(JsonField<Boolean> isTradable)
Sets Builder.isTradable to an arbitrary JSON value.
You should usually call Builder.isTradable with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final AlloyListResponse.Data.Builder name(String name)
Name of the Alloy
-
name
final AlloyListResponse.Data.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
symbol
final AlloyListResponse.Data.Builder symbol(String symbol)
Symbol of the Alloy
-
symbol
final AlloyListResponse.Data.Builder symbol(JsonField<String> symbol)
Sets Builder.symbol to an arbitrary JSON value.
You should usually call Builder.symbol with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
_sv
final AlloyListResponse.Data.Builder _sv(AlloyListResponse.Data._Sv _sv)
Schema version
-
_sv
final AlloyListResponse.Data.Builder _sv(JsonField<AlloyListResponse.Data._Sv> _sv)
Sets Builder._sv to an arbitrary JSON value.
You should usually call Builder._sv with a well-typed _Sv value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AlloyListResponse.Data.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AlloyListResponse.Data.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AlloyListResponse.Data.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AlloyListResponse.Data.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AlloyListResponse.Data.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AlloyListResponse.Data build()
Returns an immutable instance of Data.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .isTradable() .name() .symbol()
-
-
-
-