Class: Ebay::Types::XSLFile
- Inherits:
-
Object
- Object
- Ebay::Types::XSLFile
- Includes:
- Initializer, XML::Mapping
- Defined in:
- lib/ebay/types/xsl_file.rb
Overview
Attributes
text_node :file_name, 'FileName', :optional => true
text_node :file_version, 'FileVersion', :optional => true
text_node :file_content, 'FileContent', :optional => true
Instance Method Summary collapse
-
#file_content ⇒ Object
The content of the XSL stylesheet.
Methods included from Initializer
#initialize, #object_attributes=
Instance Method Details
#file_content ⇒ Object
The content of the XSL stylesheet
16 17 18 19 20 |
# File 'lib/ebay/types/xsl_file.rb', line 16 def file_content if @file_content @file ||= unpack_stylesheet(@file_content) end end |