Class: Quickfix::LienSeniority

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LienSeniority

Returns a new instance of LienSeniority.



25590
25591
25592
25593
25594
25595
25596
# File 'lib/quickfix_fields.rb', line 25590

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