Record Class SymbolRegistryPostProcessRequest

java.lang.Object
java.lang.Record
com.bluebell.greenhouse.osmosis.models.symbol.SymbolRegistryPostProcessRequest
Record Components:
resolveReviews - true when high-confidence review flags should be resolved automatically
cleanUpExchanges - true when exchange cleanup should run
category - optional category target for exchange cleanup
ticker - optional ticker target for exchange cleanup
exchange - optional exchange value for exchange cleanup

public record SymbolRegistryPostProcessRequest(boolean resolveReviews, boolean cleanUpExchanges, String category, String ticker, String exchange) extends Record
Request data for symbol registry post-processing operations.
Version:
1.0.9
Author:
Stephen Prizio
  • Constructor Details

    • SymbolRegistryPostProcessRequest

      public SymbolRegistryPostProcessRequest(boolean resolveReviews, boolean cleanUpExchanges, String category, String ticker, String exchange)
      Creates an instance of a SymbolRegistryPostProcessRequest record class.
      Parameters:
      resolveReviews - the value for the resolveReviews record component
      cleanUpExchanges - the value for the cleanUpExchanges record component
      category - the value for the category record component
      ticker - the value for the ticker record component
      exchange - the value for the exchange record component
  • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      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.
    • resolveReviews

      public boolean resolveReviews()
      Returns the value of the resolveReviews record component.
      Returns:
      the value of the resolveReviews record component
    • cleanUpExchanges

      public boolean cleanUpExchanges()
      Returns the value of the cleanUpExchanges record component.
      Returns:
      the value of the cleanUpExchanges record component
    • category

      public String category()
      Returns the value of the category record component.
      Returns:
      the value of the category record component
    • ticker

      public String ticker()
      Returns the value of the ticker record component.
      Returns:
      the value of the ticker record component
    • exchange

      public String exchange()
      Returns the value of the exchange record component.
      Returns:
      the value of the exchange record component