Class: PortfolioManager::Xml::AdditionalIdentifier
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::AdditionalIdentifier
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}additionalIdentifier
Constant Summary collapse
- AttrId =
XSD::QName.new(nil, "id")
Instance Attribute Summary collapse
- #additionalIdentifierType ⇒ PortfolioManager::Xml::AdditionalIdentifierType
- #description ⇒ SOAP::SOAPString
- #value ⇒ SOAP::SOAPString
- #xmlattr_id ⇒ SOAP::SOAPLong
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize(additionalIdentifierType = nil, description = nil, value = nil) ⇒ AdditionalIdentifier
constructor
A new instance of AdditionalIdentifier.
Constructor Details
#initialize(additionalIdentifierType = nil, description = nil, value = nil) ⇒ AdditionalIdentifier
Returns a new instance of AdditionalIdentifier.
10000 10001 10002 10003 10004 10005 |
# File 'lib/portfolio_manager/xml.rb', line 10000 def initialize(additionalIdentifierType = nil, description = nil, value = nil) @additionalIdentifierType = additionalIdentifierType @description = description @value = value @__xmlattr = {} end |
Instance Attribute Details
#additionalIdentifierType ⇒ PortfolioManager::Xml::AdditionalIdentifierType
9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 |
# File 'lib/portfolio_manager/xml.rb', line 9981 class AdditionalIdentifier AttrId = XSD::QName.new(nil, "id") attr_accessor :additionalIdentifierType attr_accessor :description attr_accessor :value def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def initialize(additionalIdentifierType = nil, description = nil, value = nil) @additionalIdentifierType = additionalIdentifierType @description = description @value = value @__xmlattr = {} end end |
#description ⇒ SOAP::SOAPString
9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 |
# File 'lib/portfolio_manager/xml.rb', line 9981 class AdditionalIdentifier AttrId = XSD::QName.new(nil, "id") attr_accessor :additionalIdentifierType attr_accessor :description attr_accessor :value def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def initialize(additionalIdentifierType = nil, description = nil, value = nil) @additionalIdentifierType = additionalIdentifierType @description = description @value = value @__xmlattr = {} end end |
#value ⇒ SOAP::SOAPString
9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 |
# File 'lib/portfolio_manager/xml.rb', line 9981 class AdditionalIdentifier AttrId = XSD::QName.new(nil, "id") attr_accessor :additionalIdentifierType attr_accessor :description attr_accessor :value def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def initialize(additionalIdentifierType = nil, description = nil, value = nil) @additionalIdentifierType = additionalIdentifierType @description = description @value = value @__xmlattr = {} end end |
#xmlattr_id ⇒ SOAP::SOAPLong
9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 |
# File 'lib/portfolio_manager/xml.rb', line 9981 class AdditionalIdentifier AttrId = XSD::QName.new(nil, "id") attr_accessor :additionalIdentifierType attr_accessor :description attr_accessor :value def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def initialize(additionalIdentifierType = nil, description = nil, value = nil) @additionalIdentifierType = additionalIdentifierType @description = description @value = value @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
9988 9989 9990 |
# File 'lib/portfolio_manager/xml.rb', line 9988 def __xmlattr @__xmlattr ||= {} end |