Class: PortfolioManager::Xml::DataRequest::Locations::Location
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::DataRequest::Locations::Location
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}location
Constant Summary collapse
- AttrCountry =
XSD::QName.new(nil, "country")
- AttrState =
XSD::QName.new(nil, "state")
Instance Attribute Summary collapse
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize ⇒ Location
constructor
A new instance of Location.
Constructor Details
#initialize ⇒ Location
Returns a new instance of Location.
8156 8157 8158 |
# File 'lib/portfolio_manager/xml.rb', line 8156 def initialize @__xmlattr = {} end |
Instance Attribute Details
#xmlattr_country ⇒ SOAP::SOAPString
8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 |
# File 'lib/portfolio_manager/xml.rb', line 8132 class Location AttrCountry = XSD::QName.new(nil, "country") AttrState = XSD::QName.new(nil, "state") def __xmlattr @__xmlattr ||= {} end def xmlattr_country __xmlattr[AttrCountry] end def xmlattr_country=(value) __xmlattr[AttrCountry] = value end def xmlattr_state __xmlattr[AttrState] end def xmlattr_state=(value) __xmlattr[AttrState] = value end def initialize @__xmlattr = {} end end |
#xmlattr_state ⇒ SOAP::SOAPString
8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 |
# File 'lib/portfolio_manager/xml.rb', line 8132 class Location AttrCountry = XSD::QName.new(nil, "country") AttrState = XSD::QName.new(nil, "state") def __xmlattr @__xmlattr ||= {} end def xmlattr_country __xmlattr[AttrCountry] end def xmlattr_country=(value) __xmlattr[AttrCountry] = value end def xmlattr_state __xmlattr[AttrState] end def xmlattr_state=(value) __xmlattr[AttrState] = value end def initialize @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
8136 8137 8138 |
# File 'lib/portfolio_manager/xml.rb', line 8136 def __xmlattr @__xmlattr ||= {} end |