Class: Quickfix::ExchangeForPhysical

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExchangeForPhysical

Returns a new instance of ExchangeForPhysical.



5128
5129
5130
5131
5132
5133
5134
# File 'lib/quickfix_fields.rb', line 5128

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