Class: PortfolioManager::Xml::ProfessionalDesignationList::ProfessionalDesignation
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::ProfessionalDesignationList::ProfessionalDesignation
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}professionalDesignation
Constant Summary collapse
- AttrId =
XSD::QName.new(nil, "id")
- AttrName =
XSD::QName.new(nil, "name")
Instance Attribute Summary collapse
- #licenseList ⇒ PortfolioManager::Xml::LicenseList
- #xmlattr_id ⇒ SOAP::SOAPString
- #xmlattr_name ⇒ SOAP::SOAPString
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize(licenseList = nil) ⇒ ProfessionalDesignation
constructor
A new instance of ProfessionalDesignation.
Constructor Details
#initialize(licenseList = nil) ⇒ ProfessionalDesignation
Returns a new instance of ProfessionalDesignation.
10446 10447 10448 10449 |
# File 'lib/portfolio_manager/xml.rb', line 10446 def initialize(licenseList = nil) @licenseList = licenseList @__xmlattr = {} end |
Instance Attribute Details
#licenseList ⇒ PortfolioManager::Xml::LicenseList
10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 |
# File 'lib/portfolio_manager/xml.rb', line 10420 class ProfessionalDesignation AttrId = XSD::QName.new(nil, "id") AttrName = XSD::QName.new(nil, "name") attr_accessor :licenseList 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(licenseList = nil) @licenseList = licenseList @__xmlattr = {} end end |
#xmlattr_id ⇒ SOAP::SOAPString
10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 |
# File 'lib/portfolio_manager/xml.rb', line 10420 class ProfessionalDesignation AttrId = XSD::QName.new(nil, "id") AttrName = XSD::QName.new(nil, "name") attr_accessor :licenseList 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(licenseList = nil) @licenseList = licenseList @__xmlattr = {} end end |
#xmlattr_name ⇒ SOAP::SOAPString
10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 |
# File 'lib/portfolio_manager/xml.rb', line 10420 class ProfessionalDesignation AttrId = XSD::QName.new(nil, "id") AttrName = XSD::QName.new(nil, "name") attr_accessor :licenseList 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(licenseList = nil) @licenseList = licenseList @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
10426 10427 10428 |
# File 'lib/portfolio_manager/xml.rb', line 10426 def __xmlattr @__xmlattr ||= {} end |