Class StockListResponse
-
- All Implemented Interfaces:
public final class StockListResponseInformation about stock available for trading.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classStockListResponse.BuilderA builder for StockListResponse.
-
Method Summary
Modifier and Type Method Description final Stringid()ID of the Stockfinal BooleanisFractionable()Whether the Stockallows for fractional trading.final BooleanisTradable()Whether the Stockis available for trading.final Stringname()Company name final Stringsymbol()Ticker symbol final List<String>tokens()List of CAIP-10 formatted token addresses. final Optional<String>cik()SEC Central Index Key. final Optional<String>compositeFigi()Composite FIGI ID. final Optional<String>cusip()CUSIP ID. final Optional<String>description()Description of the company and their services. final Optional<String>displayName()Name of Stockfor application display.final Optional<String>logoUrl()URL of the company's logo. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<Boolean>_isFractionable()Returns the raw JSON value of isFractionable. final JsonField<Boolean>_isTradable()Returns the raw JSON value of isTradable. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_symbol()Returns the raw JSON value of symbol. final JsonField<List<String>>_tokens()Returns the raw JSON value of tokens. final JsonField<String>_cik()Returns the raw JSON value of cik. final JsonField<String>_compositeFigi()Returns the raw JSON value of compositeFigi. final JsonField<String>_cusip()Returns the raw JSON value of cusip. final JsonField<String>_description()Returns the raw JSON value of description. final JsonField<String>_displayName()Returns the raw JSON value of displayName. final JsonField<String>_logoUrl()Returns the raw JSON value of logoUrl. final Map<String, JsonValue>_additionalProperties()final StockListResponse.BuildertoBuilder()final StockListResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static StockListResponse.Builderbuilder()Returns a mutable builder for constructing an instance of StockListResponse. -
-
Method Detail
-
isFractionable
final Boolean isFractionable()
Whether the
Stockallows for fractional trading. If it is not fractionable, Dinari only supports limit orders for theStock.
-
isTradable
final Boolean isTradable()
Whether the
Stockis available for trading.
-
compositeFigi
final Optional<String> compositeFigi()
Composite FIGI ID. Refer to this link for more information.
-
description
final Optional<String> description()
Description of the company and their services.
-
displayName
final Optional<String> displayName()
Name of
Stockfor application display. If defined, this supercedes thenamefield for displaying the name.
-
logoUrl
final Optional<String> logoUrl()
URL of the company's logo. Supported formats are SVG and PNG.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_isFractionable
final JsonField<Boolean> _isFractionable()
Returns the raw JSON value of isFractionable.
Unlike isFractionable, this method doesn't throw if the JSON field has an unexpected type.
-
_isTradable
final JsonField<Boolean> _isTradable()
Returns the raw JSON value of isTradable.
Unlike isTradable, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_symbol
final JsonField<String> _symbol()
Returns the raw JSON value of symbol.
Unlike symbol, this method doesn't throw if the JSON field has an unexpected type.
-
_tokens
final JsonField<List<String>> _tokens()
Returns the raw JSON value of tokens.
Unlike tokens, this method doesn't throw if the JSON field has an unexpected type.
-
_cik
final JsonField<String> _cik()
Returns the raw JSON value of cik.
Unlike cik, this method doesn't throw if the JSON field has an unexpected type.
-
_compositeFigi
final JsonField<String> _compositeFigi()
Returns the raw JSON value of compositeFigi.
Unlike compositeFigi, this method doesn't throw if the JSON field has an unexpected type.
-
_cusip
final JsonField<String> _cusip()
Returns the raw JSON value of cusip.
Unlike cusip, this method doesn't throw if the JSON field has an unexpected type.
-
_description
final JsonField<String> _description()
Returns the raw JSON value of description.
Unlike description, this method doesn't throw if the JSON field has an unexpected type.
-
_displayName
final JsonField<String> _displayName()
Returns the raw JSON value of displayName.
Unlike displayName, this method doesn't throw if the JSON field has an unexpected type.
-
_logoUrl
final JsonField<String> _logoUrl()
Returns the raw JSON value of logoUrl.
Unlike logoUrl, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final StockListResponse.Builder toBuilder()
-
validate
final StockListResponse validate()
-
builder
final static StockListResponse.Builder builder()
Returns a mutable builder for constructing an instance of StockListResponse.
The following fields are required:
.id() .isFractionable() .isTradable() .name() .symbol() .tokens()
-
-
-
-