Class: Quickfix::DateOfBirth

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

Returns a new instance of DateOfBirth.



6714
6715
6716
6717
6718
6719
6720
# File 'lib/quickfix_fields.rb', line 6714

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

Class Method Details

.fieldObject



6711
6712
6713
# File 'lib/quickfix_fields.rb', line 6711

def DateOfBirth.field
  return 486
end