Class: PortfolioManager::Xml::ResponseType
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::ResponseType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}responseType
Constant Summary collapse
- AttrStatus =
XSD::QName.new(nil, "status")
Instance Attribute Summary collapse
- #errors ⇒ PortfolioManager::Xml::ErrorsType
- #id ⇒ SOAP::SOAPLong
- #links ⇒ PortfolioManager::Xml::LinksType
- #warnings ⇒ PortfolioManager::Xml::WarningsType
- #xmlattr_status ⇒ SOAP::SOAPString
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize(id = nil, links = nil, errors = nil, warnings = nil) ⇒ ResponseType
constructor
A new instance of ResponseType.
Constructor Details
#initialize(id = nil, links = nil, errors = nil, warnings = nil) ⇒ ResponseType
Returns a new instance of ResponseType.
36 37 38 39 40 41 42 |
# File 'lib/portfolio_manager/xml.rb', line 36 def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end |
Instance Attribute Details
#errors ⇒ PortfolioManager::Xml::ErrorsType
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/portfolio_manager/xml.rb', line 16 class ResponseType AttrStatus = XSD::QName.new(nil, "status") attr_accessor :id attr_accessor :links attr_accessor :errors attr_accessor :warnings def __xmlattr @__xmlattr ||= {} end def xmlattr_status __xmlattr[AttrStatus] end def xmlattr_status=(value) __xmlattr[AttrStatus] = value end def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end end |
#id ⇒ SOAP::SOAPLong
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/portfolio_manager/xml.rb', line 16 class ResponseType AttrStatus = XSD::QName.new(nil, "status") attr_accessor :id attr_accessor :links attr_accessor :errors attr_accessor :warnings def __xmlattr @__xmlattr ||= {} end def xmlattr_status __xmlattr[AttrStatus] end def xmlattr_status=(value) __xmlattr[AttrStatus] = value end def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end end |
#links ⇒ PortfolioManager::Xml::LinksType
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/portfolio_manager/xml.rb', line 16 class ResponseType AttrStatus = XSD::QName.new(nil, "status") attr_accessor :id attr_accessor :links attr_accessor :errors attr_accessor :warnings def __xmlattr @__xmlattr ||= {} end def xmlattr_status __xmlattr[AttrStatus] end def xmlattr_status=(value) __xmlattr[AttrStatus] = value end def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end end |
#warnings ⇒ PortfolioManager::Xml::WarningsType
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/portfolio_manager/xml.rb', line 16 class ResponseType AttrStatus = XSD::QName.new(nil, "status") attr_accessor :id attr_accessor :links attr_accessor :errors attr_accessor :warnings def __xmlattr @__xmlattr ||= {} end def xmlattr_status __xmlattr[AttrStatus] end def xmlattr_status=(value) __xmlattr[AttrStatus] = value end def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end end |
#xmlattr_status ⇒ SOAP::SOAPString
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/portfolio_manager/xml.rb', line 16 class ResponseType AttrStatus = XSD::QName.new(nil, "status") attr_accessor :id attr_accessor :links attr_accessor :errors attr_accessor :warnings def __xmlattr @__xmlattr ||= {} end def xmlattr_status __xmlattr[AttrStatus] end def xmlattr_status=(value) __xmlattr[AttrStatus] = value end def initialize(id = nil, links = nil, errors = nil, warnings = nil) @id = id @links = links @errors = errors @warnings = warnings @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
24 25 26 |
# File 'lib/portfolio_manager/xml.rb', line 24 def __xmlattr @__xmlattr ||= {} end |