Class: Quickfix::NoTrades

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoTrades

Returns a new instance of NoTrades.



12135
12136
12137
12138
12139
12140
12141
# File 'lib/quickfix_fields.rb', line 12135

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