Class: Quickfix::EffectiveBusinessDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EffectiveBusinessDate

Returns a new instance of EffectiveBusinessDate.



57674
57675
57676
57677
57678
57679
57680
# File 'lib/quickfix_fields.rb', line 57674

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

Class Method Details

.fieldObject



57671
57672
57673
# File 'lib/quickfix_fields.rb', line 57671

def EffectiveBusinessDate.field
	return 2400
end