Class: Quickfix::TransferRejectReason

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

Returns a new instance of TransferRejectReason.



60625
60626
60627
60628
60629
60630
60631
# File 'lib/quickfix_fields.rb', line 60625

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

Class Method Details

.fieldObject



60622
60623
60624
# File 'lib/quickfix_fields.rb', line 60622

def TransferRejectReason.field
  return 2443
end