Class: Quickfix::StreamCurrency

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

Returns a new instance of StreamCurrency.



28021
28022
28023
28024
28025
28026
28027
# File 'lib/quickfix_fields.rb', line 28021

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

Class Method Details

.fieldObject



28018
28019
28020
# File 'lib/quickfix_fields.rb', line 28018

def StreamCurrency.field
	return 40055
end