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
34 35 36 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 34 def errors @errors end |
#valid ⇒ Object
Returns the value of attribute valid
34 35 36 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 34 def valid @valid end |
#warnings ⇒ Object
Returns the value of attribute warnings
34 35 36 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 34 def warnings @warnings end |
Instance Method Details
#invalid? ⇒ Boolean
39 40 41 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 39 def invalid? !valid end |
#valid? ⇒ Boolean
35 36 37 |
# File 'lib/ace/llm/atoms/provider_config_validator.rb', line 35 def valid? valid end |