Class: Xberg::XmlExtractionResult
- Inherits:
-
Object
- Object
- Xberg::XmlExtractionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#element_count ⇒ Integer
readonly
Returns the value of attribute element_count.
-
#unique_elements ⇒ Array[String]
readonly
Returns the value of attribute unique_elements.
Instance Method Summary collapse
-
#initialize ⇒ XmlExtractionResult
constructor
A new instance of XmlExtractionResult.
Constructor Details
#initialize ⇒ XmlExtractionResult
Returns a new instance of XmlExtractionResult.
1089 |
# File 'sig/types.rbs', line 1089
def initialize: (content: String, element_count: Integer, unique_elements: Array[String]) -> void
|
Instance Attribute Details
#content ⇒ String (readonly)
Returns the value of attribute content.
1085 1086 1087 |
# File 'sig/types.rbs', line 1085 def content @content end |
#element_count ⇒ Integer (readonly)
Returns the value of attribute element_count.
1086 1087 1088 |
# File 'sig/types.rbs', line 1086 def element_count @element_count end |
#unique_elements ⇒ Array[String] (readonly)
Returns the value of attribute unique_elements.
1087 1088 1089 |
# File 'sig/types.rbs', line 1087 def unique_elements @unique_elements end |