Class: Quickfix::NewsID

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

Returns a new instance of NewsID.



19480
19481
19482
19483
19484
19485
19486
# File 'lib/quickfix_fields.rb', line 19480

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

Class Method Details

.fieldObject



19477
19478
19479
# File 'lib/quickfix_fields.rb', line 19477

def NewsID.field
	return 1472
end