Class StockRetrieveDividendsResponse
-
- All Implemented Interfaces:
public final class StockRetrieveDividendsResponseInformation about a dividend announcement for a
Stock.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classStockRetrieveDividendsResponse.BuilderA builder for StockRetrieveDividendsResponse.
-
Method Summary
Modifier and Type Method Description final Optional<Double>cashAmount()Cash amount of the dividend per share owned. final Optional<String>currency()Currency in which the dividend is paid. final Optional<String>dividendType()Type of dividend. final Optional<LocalDate>exDividendDate()Date on or after which a Stockis traded without the right to receive the next dividend payment.final Optional<LocalDate>payDate()Date on which the dividend is paid out. final Optional<LocalDate>recordDate()Date that the shares must be held to receive the dividend; set by the company. final Optional<String>ticker()Ticker symbol of the Stock.final JsonField<Double>_cashAmount()Returns the raw JSON value of cashAmount. final JsonField<String>_currency()Returns the raw JSON value of currency. final JsonField<String>_dividendType()Returns the raw JSON value of dividendType. final JsonField<LocalDate>_exDividendDate()Returns the raw JSON value of exDividendDate. final JsonField<LocalDate>_payDate()Returns the raw JSON value of payDate. final JsonField<LocalDate>_recordDate()Returns the raw JSON value of recordDate. final JsonField<String>_ticker()Returns the raw JSON value of ticker. final Map<String, JsonValue>_additionalProperties()final StockRetrieveDividendsResponse.BuildertoBuilder()final StockRetrieveDividendsResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static StockRetrieveDividendsResponse.Builderbuilder()Returns a mutable builder for constructing an instance of StockRetrieveDividendsResponse. -
-
Method Detail
-
cashAmount
final Optional<Double> cashAmount()
Cash amount of the dividend per share owned.
-
dividendType
final Optional<String> dividendType()
Type of dividend. Dividends that have been paid and/or are expected to be paid on consistent schedules are denoted as
CD. Special Cash dividends that have been paid that are infrequent or unusual, and/or can not be expected to occur in the future are denoted asSC.
-
exDividendDate
final Optional<LocalDate> exDividendDate()
Date on or after which a
Stockis traded without the right to receive the next dividend payment. If you purchase aStockon or after the ex-dividend date, you will not receive the upcoming dividend. In ISO 8601 format, YYYY-MM-DD.
-
payDate
final Optional<LocalDate> payDate()
Date on which the dividend is paid out. In ISO 8601 format, YYYY-MM-DD.
-
recordDate
final Optional<LocalDate> recordDate()
Date that the shares must be held to receive the dividend; set by the company. In ISO 8601 format, YYYY-MM-DD.
-
_cashAmount
final JsonField<Double> _cashAmount()
Returns the raw JSON value of cashAmount.
Unlike cashAmount, this method doesn't throw if the JSON field has an unexpected type.
-
_currency
final JsonField<String> _currency()
Returns the raw JSON value of currency.
Unlike currency, this method doesn't throw if the JSON field has an unexpected type.
-
_dividendType
final JsonField<String> _dividendType()
Returns the raw JSON value of dividendType.
Unlike dividendType, this method doesn't throw if the JSON field has an unexpected type.
-
_exDividendDate
final JsonField<LocalDate> _exDividendDate()
Returns the raw JSON value of exDividendDate.
Unlike exDividendDate, this method doesn't throw if the JSON field has an unexpected type.
-
_payDate
final JsonField<LocalDate> _payDate()
Returns the raw JSON value of payDate.
Unlike payDate, this method doesn't throw if the JSON field has an unexpected type.
-
_recordDate
final JsonField<LocalDate> _recordDate()
Returns the raw JSON value of recordDate.
Unlike recordDate, this method doesn't throw if the JSON field has an unexpected type.
-
_ticker
final JsonField<String> _ticker()
Returns the raw JSON value of ticker.
Unlike ticker, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final StockRetrieveDividendsResponse.Builder toBuilder()
-
validate
final StockRetrieveDividendsResponse validate()
-
builder
final static StockRetrieveDividendsResponse.Builder builder()
Returns a mutable builder for constructing an instance of StockRetrieveDividendsResponse.
-
-
-
-