Class: Quickfix::ExDate

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) ⇒ ExDate

Returns a new instance of ExDate.



5804
5805
5806
5807
5808
5809
5810
# File 'lib/quickfix_fields.rb', line 5804

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

Class Method Details

.fieldObject



5801
5802
5803
# File 'lib/quickfix_fields.rb', line 5801

def ExDate.field
	return 230
end