Class: Quickfix::NewsID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NewsID

Returns a new instance of NewsID.



8898
8899
8900
8901
8902
8903
8904
# File 'lib/quickfix_fields.rb', line 8898

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

Class Method Details

.fieldObject



8895
8896
8897
# File 'lib/quickfix_fields.rb', line 8895

def NewsID.field
	return 1472
end