Class: Quickfix::DateOfBirth

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DateOfBirth

Returns a new instance of DateOfBirth.



19363
19364
19365
19366
19367
19368
19369
# File 'lib/quickfix_fields.rb', line 19363

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

Class Method Details

.fieldObject



19360
19361
19362
# File 'lib/quickfix_fields.rb', line 19360

def DateOfBirth.field
	return 486
end