Class: Quickfix::MDFeedType

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

Returns a new instance of MDFeedType.



13721
13722
13723
13724
13725
13726
13727
# File 'lib/quickfix_fields.rb', line 13721

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

Class Method Details

.fieldObject



13718
13719
13720
# File 'lib/quickfix_fields.rb', line 13718

def MDFeedType.field
	return 1022
end