Class: Quickfix::Urgency

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

Returns a new instance of Urgency.



1488
1489
1490
1491
1492
1493
1494
# File 'lib/quickfix_fields.rb', line 1488

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

Class Method Details

.fieldObject



1485
1486
1487
# File 'lib/quickfix_fields.rb', line 1485

def Urgency.field
  return 61
end