Class: PortfolioManager::Xml::ProfessionalDesignationList::ProfessionalDesignation

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#licenseListPortfolioManager::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_idSOAP::SOAPString

Returns:

  • (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_nameSOAP::SOAPString

Returns:

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

#__xmlattrObject



10426
10427
10428
# File 'lib/portfolio_manager/xml.rb', line 10426

def __xmlattr
  @__xmlattr ||= {}
end