Class: Quickfix::SecurityTradingStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityTradingStatus

Returns a new instance of SecurityTradingStatus.



4127
4128
4129
4130
4131
4132
4133
# File 'lib/quickfix_fields.rb', line 4127

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