Class: Quickfix::UnderlyingLienSeniority

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

Returns a new instance of UnderlyingLienSeniority.



26162
26163
26164
26165
26166
26167
26168
# File 'lib/quickfix_fields.rb', line 26162

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

Class Method Details

.fieldObject



26159
26160
26161
# File 'lib/quickfix_fields.rb', line 26159

def UnderlyingLienSeniority.field
  return 1998
end