Class: PortfolioManager::Xml::DetailType
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::DetailType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}detailType
Constant Summary collapse
- AttrId =
XSD::QName.new(nil, "id")
- AttrName =
XSD::QName.new(nil, "name")
Instance Attribute Summary collapse
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize ⇒ DetailType
constructor
A new instance of DetailType.
Constructor Details
#initialize ⇒ DetailType
Returns a new instance of DetailType.
10564 10565 10566 |
# File 'lib/portfolio_manager/xml.rb', line 10564 def initialize @__xmlattr = {} end |
Instance Attribute Details
#xmlattr_id ⇒ SOAP::SOAPLong
10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 |
# File 'lib/portfolio_manager/xml.rb', line 10540 class DetailType AttrId = XSD::QName.new(nil, "id") AttrName = XSD::QName.new(nil, "name") def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_name __xmlattr[AttrName] end def xmlattr_name=(value) __xmlattr[AttrName] = value end def initialize @__xmlattr = {} end end |
#xmlattr_name ⇒ SOAP::SOAPString
10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 |
# File 'lib/portfolio_manager/xml.rb', line 10540 class DetailType AttrId = XSD::QName.new(nil, "id") AttrName = XSD::QName.new(nil, "name") def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_name __xmlattr[AttrName] end def xmlattr_name=(value) __xmlattr[AttrName] = value end def initialize @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
10544 10545 10546 |
# File 'lib/portfolio_manager/xml.rb', line 10544 def __xmlattr @__xmlattr ||= {} end |