Class: Quickfix::SideTrdSubType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideTrdSubType

Returns a new instance of SideTrdSubType.



18765
18766
18767
18768
18769
18770
18771
# File 'lib/quickfix_fields.rb', line 18765

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