Class: Quickfix::NoTradePriceConditions

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoTradePriceConditions

Returns a new instance of NoTradePriceConditions.



24082
24083
24084
24085
24086
24087
24088
# File 'lib/quickfix_fields.rb', line 24082

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