Class: Quickfix::QuoteCondition

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteCondition

Returns a new instance of QuoteCondition.



3477
3478
3479
3480
3481
3482
3483
# File 'lib/quickfix_fields.rb', line 3477

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