Class: Quickfix::QuoteEntryID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteEntryID

Returns a new instance of QuoteEntryID.



3438
3439
3440
3441
3442
3443
3444
# File 'lib/quickfix_fields.rb', line 3438

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

Class Method Details

.fieldObject



3435
3436
3437
# File 'lib/quickfix_fields.rb', line 3435

def QuoteEntryID.field
  return 299
end