Method: PortfolioManager::Xml::DetailType#xmlattr_id

Defined in:
lib/portfolio_manager/xml.rb,
lib/portfolio_manager/xml.rb

#xmlattr_idSOAP::SOAPLong

Returns:

  • (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