Class: Quickfix::TransferTransType

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

Returns a new instance of TransferTransType.



60573
60574
60575
60576
60577
60578
60579
# File 'lib/quickfix_fields.rb', line 60573

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

Class Method Details

.fieldObject



60570
60571
60572
# File 'lib/quickfix_fields.rb', line 60570

def TransferTransType.field
  return 2439
end