Class: Quickfix::BusinessDayType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BusinessDayType

Returns a new instance of BusinessDayType.



62562
62563
62564
62565
62566
62567
62568
# File 'lib/quickfix_fields.rb', line 62562

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