Class: Quickfix::DKReason

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DKReason

Returns a new instance of DKReason.



2151
2152
2153
2154
2155
2156
2157
# File 'lib/quickfix_fields.rb', line 2151

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

Class Method Details

.fieldObject



2148
2149
2150
# File 'lib/quickfix_fields.rb', line 2148

def DKReason.field
  return 127
end