Record Class ManualSymbolEnrichmentResponse
java.lang.Object
java.lang.Record
com.bluebell.greenhouse.platform.models.api.dto.symbol.ManualSymbolEnrichmentResponse
- Record Components:
success- true when the enrichment request completed successfullymessage- message describing the enrichment resultentry- registry entry returned by the enrichment flow
public record ManualSymbolEnrichmentResponse(boolean success, String message, SymbolRegistryEntry entry)
extends Record
Class representation of a result of manually enriching a
Symbol.- Version:
- 1.0.9
- Author:
- Stephen Prizio
-
Constructor Summary
ConstructorsConstructorDescriptionManualSymbolEnrichmentResponse(boolean success, String message, SymbolRegistryEntry entry) Creates an instance of aManualSymbolEnrichmentResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionentry()Returns the value of theentryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.message()Returns the value of themessagerecord component.booleansuccess()Returns the value of thesuccessrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
equals
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 withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
success
-
message
-
entry
-