Record Class MistralAiModerationApi.MistralAiModerationResult
java.lang.Object
java.lang.Record
org.springframework.ai.mistralai.api.MistralAiModerationApi.MistralAiModerationResult
- Enclosing class:
- MistralAiModerationApi
public static record MistralAiModerationApi.MistralAiModerationResult(MistralAiModerationApi.Categories categories, MistralAiModerationApi.CategoryScores categoryScores)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMistralAiModerationResult
(MistralAiModerationApi.Categories categories, MistralAiModerationApi.CategoryScores categoryScores) Creates an instance of aMistralAiModerationResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecategories
record component.Returns the value of thecategoryScores
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
flagged()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
MistralAiModerationResult
public MistralAiModerationResult(MistralAiModerationApi.Categories categories, MistralAiModerationApi.CategoryScores categoryScores) Creates an instance of aMistralAiModerationResult
record class.- Parameters:
categories
- the value for thecategories
record componentcategoryScores
- the value for thecategoryScores
record component
-
-
Method Details
-
flagged
public boolean flagged() -
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. -
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. -
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
categories
Returns the value of thecategories
record component.- Returns:
- the value of the
categories
record component
-
categoryScores
Returns the value of thecategoryScores
record component.- Returns:
- the value of the
categoryScores
record component
-