Class: DynamicPDFApi::XmlResponse
- Defined in:
- lib/ruby_client/XmlResponse.rb
Overview
Represents the xml response.
Instance Attribute Summary collapse
-
#content ⇒ Object
Gets the xml content.
Attributes inherited from Response
#error_id, #error_json, #error_message, #is_successful, #status_code
Instance Method Summary collapse
-
#initialize(xml_content = nil) ⇒ XmlResponse
constructor
Initializes a new instance of the XmlResponse class.
Constructor Details
#initialize(xml_content = nil) ⇒ XmlResponse
Initializes a new instance of the XmlResponse class.
13 14 15 16 |
# File 'lib/ruby_client/XmlResponse.rb', line 13 def initialize(xml_content = nil) super() @content = xml_content end |
Instance Attribute Details
#content ⇒ Object
Gets the xml content.
21 22 23 |
# File 'lib/ruby_client/XmlResponse.rb', line 21 def content @content end |