Class: Quickfix::TransferTransType

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

Instance Method Summary collapse

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