Class: Quickfix::TransferStatus

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

Returns a new instance of TransferStatus.



60612
60613
60614
60615
60616
60617
60618
# File 'lib/quickfix_fields.rb', line 60612

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

Class Method Details

.fieldObject



60609
60610
60611
# File 'lib/quickfix_fields.rb', line 60609

def TransferStatus.field
  return 2442
end