Record Class EODCryptoStatisticsResponse

java.lang.Object
java.lang.Record
com.bluebell.greenhouse.sol.models.responses.eod.EODCryptoStatisticsResponse
Record Components:
marketCapitalization - current market cap
marketCapitalizationDiluted - diluted market cap
circulatingSupply - circulating supply
totalSupply - total supply
maxSupply - max supply
marketCapDominance - market-cap dominance
technicalDoc - white-paper or technical document URL
explorer - primary explorer URL
sourceCode - source-code URL
messageBoard - message-board URL
lowAllTime - all-time low
highAllTime - all-time high

public record EODCryptoStatisticsResponse(BigDecimal marketCapitalization, BigDecimal marketCapitalizationDiluted, BigDecimal circulatingSupply, BigDecimal totalSupply, BigDecimal maxSupply, BigDecimal marketCapDominance, String technicalDoc, String explorer, String sourceCode, String messageBoard, BigDecimal lowAllTime, BigDecimal highAllTime) extends Record
Statistics section of a crypto fundamentals payload.
Version:
1.0.12
Author:
Stephen Prizio
  • Constructor Details

  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • marketCapitalization

      public BigDecimal marketCapitalization()
      Returns the value of the marketCapitalization record component.
      Returns:
      the value of the marketCapitalization record component
    • marketCapitalizationDiluted

      public BigDecimal marketCapitalizationDiluted()
      Returns the value of the marketCapitalizationDiluted record component.
      Returns:
      the value of the marketCapitalizationDiluted record component
    • circulatingSupply

      public BigDecimal circulatingSupply()
      Returns the value of the circulatingSupply record component.
      Returns:
      the value of the circulatingSupply record component
    • totalSupply

      public BigDecimal totalSupply()
      Returns the value of the totalSupply record component.
      Returns:
      the value of the totalSupply record component
    • maxSupply

      public BigDecimal maxSupply()
      Returns the value of the maxSupply record component.
      Returns:
      the value of the maxSupply record component
    • marketCapDominance

      public BigDecimal marketCapDominance()
      Returns the value of the marketCapDominance record component.
      Returns:
      the value of the marketCapDominance record component
    • technicalDoc

      public String technicalDoc()
      Returns the value of the technicalDoc record component.
      Returns:
      the value of the technicalDoc record component
    • explorer

      public String explorer()
      Returns the value of the explorer record component.
      Returns:
      the value of the explorer record component
    • sourceCode

      public String sourceCode()
      Returns the value of the sourceCode record component.
      Returns:
      the value of the sourceCode record component
    • messageBoard

      public String messageBoard()
      Returns the value of the messageBoard record component.
      Returns:
      the value of the messageBoard record component
    • lowAllTime

      public BigDecimal lowAllTime()
      Returns the value of the lowAllTime record component.
      Returns:
      the value of the lowAllTime record component
    • highAllTime

      public BigDecimal highAllTime()
      Returns the value of the highAllTime record component.
      Returns:
      the value of the highAllTime record component