Class: CatalogRuleSyntaxCheck
- Inherits:
-
Object
- Object
- CatalogRuleSyntaxCheck
- Defined in:
- lib/api/catalogrule/CatalogRule.rb
Overview
/Catalog.Rule.SyntaxCheck
valid - SOAP::SOAPBoolean
warnings - SOAP::SOAPString
errors - SOAP::SOAPString
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
-
#initialize(valid = nil, warnings = nil, errors = nil) ⇒ CatalogRuleSyntaxCheck
constructor
A new instance of CatalogRuleSyntaxCheck.
Constructor Details
#initialize(valid = nil, warnings = nil, errors = nil) ⇒ CatalogRuleSyntaxCheck
Returns a new instance of CatalogRuleSyntaxCheck.
25 26 27 28 29 |
# File 'lib/api/catalogrule/CatalogRule.rb', line 25 def initialize(valid = nil, warnings = nil, errors = nil) @valid = valid @warnings = warnings @errors = errors end |
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors.
23 24 25 |
# File 'lib/api/catalogrule/CatalogRule.rb', line 23 def errors @errors end |
#valid ⇒ Object
Returns the value of attribute valid.
21 22 23 |
# File 'lib/api/catalogrule/CatalogRule.rb', line 21 def valid @valid end |
#warnings ⇒ Object
Returns the value of attribute warnings.
22 23 24 |
# File 'lib/api/catalogrule/CatalogRule.rb', line 22 def warnings @warnings end |