Class: Quickfix::OrderRestrictions

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderRestrictions

Returns a new instance of OrderRestrictions.



7260
7261
7262
7263
7264
7265
7266
# File 'lib/quickfix_fields.rb', line 7260

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