Class: Quickfix::ApplSeqNum

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

Returns a new instance of ApplSeqNum.



15749
15750
15751
15752
15753
15754
15755
# File 'lib/quickfix_fields.rb', line 15749

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

Class Method Details

.fieldObject



15746
15747
15748
# File 'lib/quickfix_fields.rb', line 15746

def ApplSeqNum.field
  return 1181
end