Class: Ace::LLM::Atoms::ProviderConfigValidator::ValidationResult
- Inherits:
-
Struct
- Object
- Struct
- Ace::LLM::Atoms::ProviderConfigValidator::ValidationResult
- Defined in:
- lib/ace/llm/atoms/provider_config_validator.rb
Overview
Validation result
Instance Attribute Summary collapse
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#valid ⇒ Object
Returns the value of attribute valid.
-
#warnings ⇒ Object
Returns the value of attribute warnings.
Instance Method Summary collapse
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors
35 36 37 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 35 def errors @errors end |
#valid ⇒ Object
Returns the value of attribute valid
35 36 37 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 35 def valid @valid end |
#warnings ⇒ Object
Returns the value of attribute warnings
35 36 37 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 35 def warnings @warnings end |
Instance Method Details
#invalid? ⇒ Boolean
40 41 42 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 40 def invalid? !valid end |
#valid? ⇒ Boolean
36 37 38 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 36 def valid? valid end |