Class: Quickfix::ShortSaleRestriction

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ShortSaleRestriction

Returns a new instance of ShortSaleRestriction.



22652
22653
22654
22655
22656
22657
22658
# File 'lib/quickfix_fields.rb', line 22652

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