Class: Quickfix::TransferID

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

Returns a new instance of TransferID.



60547
60548
60549
60550
60551
60552
60553
# File 'lib/quickfix_fields.rb', line 60547

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

Class Method Details

.fieldObject



60544
60545
60546
# File 'lib/quickfix_fields.rb', line 60544

def TransferID.field
	return 2437
end