Class: Quickfix::CoveredOrUncovered

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

Returns a new instance of CoveredOrUncovered.



3048
3049
3050
3051
3052
3053
3054
# File 'lib/quickfix_fields.rb', line 3048

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

Class Method Details

.fieldObject



3045
3046
3047
# File 'lib/quickfix_fields.rb', line 3045

def CoveredOrUncovered.field
  return 203
end