Class: Quickfix::AutoAcceptIndicator

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

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

Class Method Details

.fieldObject



10312
10313
10314
# File 'lib/quickfix_fields.rb', line 10312

def AutoAcceptIndicator.field
  return 754
end