Class: Quickfix::NoSettlementAmounts

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoSettlementAmounts

Returns a new instance of NoSettlementAmounts.



22236
22237
22238
22239
22240
22241
22242
# File 'lib/quickfix_fields.rb', line 22236

def initialize(data = nil)
  if( data == nil )
    super(1700)
  else
    super(1700, data)
  end
end

Class Method Details

.fieldObject



22233
22234
22235
# File 'lib/quickfix_fields.rb', line 22233

def NoSettlementAmounts.field
  return 1700
end