Class: PortfolioManager::Xml::ContactType
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::ContactType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}contactType
Instance Attribute Summary collapse
- #address ⇒ PortfolioManager::Xml::AddressType
- #email ⇒ SOAP::SOAPString
- #firstName ⇒ SOAP::SOAPString
- #jobTitle ⇒ SOAP::SOAPString
- #lastName ⇒ SOAP::SOAPString
- #phone ⇒ SOAP::SOAPString
Instance Method Summary collapse
-
#initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) ⇒ ContactType
constructor
A new instance of ContactType.
Constructor Details
#initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) ⇒ ContactType
Returns a new instance of ContactType.
3027 3028 3029 3030 3031 3032 3033 3034 |
# File 'lib/portfolio_manager/xml.rb', line 3027 def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end |
Instance Attribute Details
#address ⇒ PortfolioManager::Xml::AddressType
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |
#email ⇒ SOAP::SOAPString
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |
#firstName ⇒ SOAP::SOAPString
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |
#jobTitle ⇒ SOAP::SOAPString
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |
#lastName ⇒ SOAP::SOAPString
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |
#phone ⇒ SOAP::SOAPString
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 |
# File 'lib/portfolio_manager/xml.rb', line 3019 class ContactType attr_accessor :firstName attr_accessor :lastName attr_accessor :email attr_accessor :address attr_accessor :jobTitle attr_accessor :phone def initialize(firstName = nil, lastName = nil, email = nil, address = nil, jobTitle = nil, phone = nil) @firstName = firstName @lastName = lastName @email = email @address = address @jobTitle = jobTitle @phone = phone end end |