Class: Quickfix::EmailType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EmailType

Returns a new instance of EmailType.



526
527
528
529
530
531
532
# File 'lib/quickfix_fields.rb', line 526

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

Class Method Details

.fieldObject



523
524
525
# File 'lib/quickfix_fields.rb', line 523

def EmailType.field
	return 94
end