Class: Quickfix::UnderlyingShortSaleRestriction

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingShortSaleRestriction

Returns a new instance of UnderlyingShortSaleRestriction.



26747
26748
26749
26750
26751
26752
26753
# File 'lib/quickfix_fields.rb', line 26747

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