Class: Quickfix::OrderID
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::OrderID
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ OrderID
constructor
A new instance of OrderID.
Constructor Details
#initialize(data = nil) ⇒ OrderID
Returns a new instance of OrderID.
1293 1294 1295 1296 1297 1298 1299 |
# File 'lib/quickfix_fields.rb', line 1293 def initialize(data = nil) if( data == nil ) super(37) else super(37, data) end end |