Class: WriteOffDebt
- Inherits:
-
Object
- Object
- WriteOffDebt
- Defined in:
- lib/default.rb
Overview
Instance Attribute Summary collapse
-
#adjustmentAmount ⇒ Object
Returns the value of attribute adjustmentAmount.
-
#callerDescription ⇒ Object
Returns the value of attribute callerDescription.
-
#callerReference ⇒ Object
Returns the value of attribute callerReference.
-
#creditInstrumentId ⇒ Object
Returns the value of attribute creditInstrumentId.
Instance Method Summary collapse
-
#initialize(creditInstrumentId = nil, adjustmentAmount = nil, callerReference = nil, callerDescription = nil) ⇒ WriteOffDebt
constructor
A new instance of WriteOffDebt.
Constructor Details
#initialize(creditInstrumentId = nil, adjustmentAmount = nil, callerReference = nil, callerDescription = nil) ⇒ WriteOffDebt
Returns a new instance of WriteOffDebt.
1150 1151 1152 1153 1154 1155 |
# File 'lib/default.rb', line 1150 def initialize(creditInstrumentId = nil, adjustmentAmount = nil, callerReference = nil, callerDescription = nil) @creditInstrumentId = creditInstrumentId @adjustmentAmount = adjustmentAmount @callerReference = callerReference @callerDescription = callerDescription end |
Instance Attribute Details
#adjustmentAmount ⇒ Object
Returns the value of attribute adjustmentAmount.
1146 1147 1148 |
# File 'lib/default.rb', line 1146 def adjustmentAmount @adjustmentAmount end |
#callerDescription ⇒ Object
Returns the value of attribute callerDescription.
1148 1149 1150 |
# File 'lib/default.rb', line 1148 def callerDescription @callerDescription end |
#callerReference ⇒ Object
Returns the value of attribute callerReference.
1147 1148 1149 |
# File 'lib/default.rb', line 1147 def callerReference @callerReference end |
#creditInstrumentId ⇒ Object
Returns the value of attribute creditInstrumentId.
1145 1146 1147 |
# File 'lib/default.rb', line 1145 def creditInstrumentId @creditInstrumentId end |