Class: Quickfix::QuoteEntryStatus

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

Returns a new instance of QuoteEntryStatus.



15567
15568
15569
15570
15571
15572
15573
# File 'lib/quickfix_fields.rb', line 15567

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

Class Method Details

.fieldObject



15564
15565
15566
# File 'lib/quickfix_fields.rb', line 15564

def QuoteEntryStatus.field
  return 1167
end