Class: TransactionPart
- Inherits:
-
Object
- Object
- TransactionPart
- Defined in:
- lib/default.rb
Overview
/TransactionPart
instrumentId - SOAP::SOAPString
role - TransactionalRole
name - SOAP::SOAPString
reference - SOAP::SOAPString
description - SOAP::SOAPString
feesPaid - Amount
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#feesPaid ⇒ Object
Returns the value of attribute feesPaid.
-
#instrumentId ⇒ Object
Returns the value of attribute instrumentId.
-
#name ⇒ Object
Returns the value of attribute name.
-
#reference ⇒ Object
Returns the value of attribute reference.
-
#role ⇒ Object
Returns the value of attribute role.
Instance Method Summary collapse
-
#initialize(instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feesPaid = nil) ⇒ TransactionPart
constructor
A new instance of TransactionPart.
Constructor Details
#initialize(instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feesPaid = nil) ⇒ TransactionPart
Returns a new instance of TransactionPart.
49 50 51 52 53 54 55 56 |
# File 'lib/default.rb', line 49 def initialize(instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feesPaid = nil) @instrumentId = instrumentId @role = role @name = name @reference = reference @description = description @feesPaid = feesPaid end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
46 47 48 |
# File 'lib/default.rb', line 46 def description @description end |
#feesPaid ⇒ Object
Returns the value of attribute feesPaid.
47 48 49 |
# File 'lib/default.rb', line 47 def feesPaid @feesPaid end |
#instrumentId ⇒ Object
Returns the value of attribute instrumentId.
42 43 44 |
# File 'lib/default.rb', line 42 def instrumentId @instrumentId end |
#name ⇒ Object
Returns the value of attribute name.
44 45 46 |
# File 'lib/default.rb', line 44 def name @name end |
#reference ⇒ Object
Returns the value of attribute reference.
45 46 47 |
# File 'lib/default.rb', line 45 def reference @reference end |
#role ⇒ Object
Returns the value of attribute role.
43 44 45 |
# File 'lib/default.rb', line 43 def role @role end |