Class: Quickfix::IssueDate

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

Returns a new instance of IssueDate.



5739
5740
5741
5742
5743
5744
5745
# File 'lib/quickfix_fields.rb', line 5739

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

Class Method Details

.fieldObject



5736
5737
5738
# File 'lib/quickfix_fields.rb', line 5736

def IssueDate.field
	return 225
end