Class: Quickfix::UnderlyingLienSeniority

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

Instance Method Summary collapse

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