Class: Cadenya::Models::Objectives::ObjectiveFeedbackData

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/cadenya/models/objectives/objective_feedback_data.rb,
sig/cadenya/models/objectives/objective_feedback_data.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initializeObjectiveFeedbackData

Returns a new instance of ObjectiveFeedbackData.

Parameters:

  • comment: (String)
  • score: (Float)


17
# File 'sig/cadenya/models/objectives/objective_feedback_data.rbs', line 17

def initialize: (?comment: String, ?score: Float) -> void

Instance Attribute Details

#commentString?

Optional human-readable comment explaining the feedback

Parameters:

  • (String)

Returns:

  • (String, nil)


11
# File 'lib/cadenya/models/objectives/objective_feedback_data.rb', line 11

optional :comment, String

#scoreFloat?

A score between -1.0 and 1.0 representing the quality of the objective's execution. -1.0 is the worst possible score, 0.0 is neutral, and 1.0 is the best.

Parameters:

  • (Float)

Returns:

  • (Float, nil)


19
# File 'lib/cadenya/models/objectives/objective_feedback_data.rb', line 19

optional :score, Float

Instance Method Details

#to_hash{ comment: String, score: Float }

Returns:

  • ({ comment: String, score: Float })


19
# File 'sig/cadenya/models/objectives/objective_feedback_data.rbs', line 19

def to_hash: -> { comment: String, score: Float }