Class: Quickfix::EmailType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EmailType

Returns a new instance of EmailType.



1865
1866
1867
1868
1869
1870
1871
# File 'lib/quickfix_fields.rb', line 1865

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