Class: Quickfix::BeginSeqNo

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BeginSeqNo



7832
7833
7834
7835
7836
7837
7838
# File 'lib/quickfix_fields.rb', line 7832

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

Class Method Details

.fieldObject



7829
7830
7831
# File 'lib/quickfix_fields.rb', line 7829

def BeginSeqNo.field
  return 7
end