Class: Quickfix::CustomerPriority

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

Returns a new instance of CustomerPriority.



62419
62420
62421
62422
62423
62424
62425
# File 'lib/quickfix_fields.rb', line 62419

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

Class Method Details

.fieldObject



62416
62417
62418
# File 'lib/quickfix_fields.rb', line 62416

def CustomerPriority.field
  return 2570
end