Class: TransactionPart
- Inherits:
-
Object
- Object
- TransactionPart
- Defined in:
- lib/default.rb
Overview
/TransactionPart
accountId - (any)
instrumentId - (any)
role - TransactionalRole
name - SOAP::SOAPString
reference - SOAP::SOAPString
description - SOAP::SOAPString
feePaid - Amount
Instance Attribute Summary collapse
-
#accountId ⇒ Object
Returns the value of attribute accountId.
-
#description ⇒ Object
Returns the value of attribute description.
-
#feePaid ⇒ Object
Returns the value of attribute feePaid.
-
#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(accountId = nil, instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feePaid = nil) ⇒ TransactionPart
constructor
A new instance of TransactionPart.
Constructor Details
#initialize(accountId = nil, instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feePaid = nil) ⇒ TransactionPart
Returns a new instance of TransactionPart.
73 74 75 76 77 78 79 80 81 |
# File 'lib/default.rb', line 73 def initialize(accountId = nil, instrumentId = nil, role = nil, name = nil, reference = nil, description = nil, feePaid = nil) @accountId = accountId @instrumentId = instrumentId @role = role @name = name @reference = reference @description = description @feePaid = feePaid end |
Instance Attribute Details
#accountId ⇒ Object
Returns the value of attribute accountId.
65 66 67 |
# File 'lib/default.rb', line 65 def accountId @accountId end |
#description ⇒ Object
Returns the value of attribute description.
70 71 72 |
# File 'lib/default.rb', line 70 def description @description end |
#feePaid ⇒ Object
Returns the value of attribute feePaid.
71 72 73 |
# File 'lib/default.rb', line 71 def feePaid @feePaid end |
#instrumentId ⇒ Object
Returns the value of attribute instrumentId.
66 67 68 |
# File 'lib/default.rb', line 66 def instrumentId @instrumentId end |
#name ⇒ Object
Returns the value of attribute name.
68 69 70 |
# File 'lib/default.rb', line 68 def name @name end |
#reference ⇒ Object
Returns the value of attribute reference.
69 70 71 |
# File 'lib/default.rb', line 69 def reference @reference end |
#role ⇒ Object
Returns the value of attribute role.
67 68 69 |
# File 'lib/default.rb', line 67 def role @role end |