Class: Quickfix::CustomerPriority

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ 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