Class: Quickfix::TransferType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TransferType

Returns a new instance of TransferType.



60586
60587
60588
60589
60590
60591
60592
# File 'lib/quickfix_fields.rb', line 60586

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

Class Method Details

.fieldObject



60583
60584
60585
# File 'lib/quickfix_fields.rb', line 60583

def TransferType.field
	return 2440
end