Class: Quickfix::SettlPriceType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SettlPriceType

Returns a new instance of SettlPriceType.



10016
10017
10018
10019
10020
10021
10022
# File 'lib/quickfix_fields.rb', line 10016

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