Class: Quickfix::ClearingBusinessDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearingBusinessDate

Returns a new instance of ClearingBusinessDate.



9808
9809
9810
9811
9812
9813
9814
# File 'lib/quickfix_fields.rb', line 9808

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