Class: Quickfix::QuoteAckStatus

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

Returns a new instance of QuoteAckStatus.



3750
3751
3752
3753
3754
3755
3756
# File 'lib/quickfix_fields.rb', line 3750

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

Class Method Details

.fieldObject



3747
3748
3749
# File 'lib/quickfix_fields.rb', line 3747

def QuoteAckStatus.field
  return 1865
end