Class: Quickfix::SettlPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SettlPrice

Returns a new instance of SettlPrice.



10003
10004
10005
10006
10007
10008
10009
# File 'lib/quickfix_fields.rb', line 10003

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

Class Method Details

.fieldObject



10000
10001
10002
# File 'lib/quickfix_fields.rb', line 10000

def SettlPrice.field
  return 730
end