Class: Quickfix::AutoAcceptIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AutoAcceptIndicator

Returns a new instance of AutoAcceptIndicator.



10315
10316
10317
10318
10319
10320
10321
# File 'lib/quickfix_fields.rb', line 10315

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