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.
1078 |
# File 'sig/types.rbs', line 1078
def initialize: (content: String, element_count: Integer, unique_elements: Array[String]) -> void
|
Instance Attribute Details
#content ⇒ String (readonly)
Returns the value of attribute content.
1074 1075 1076 |
# File 'sig/types.rbs', line 1074 def content @content end |
#element_count ⇒ Integer (readonly)
Returns the value of attribute element_count.
1075 1076 1077 |
# File 'sig/types.rbs', line 1075 def element_count @element_count end |
#unique_elements ⇒ Array[String] (readonly)
Returns the value of attribute unique_elements.
1076 1077 1078 |
# File 'sig/types.rbs', line 1076 def unique_elements @unique_elements end |