Class: Quickfix::LienSeniority

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

Class Method Details

.fieldObject



25587
25588
25589
# File 'lib/quickfix_fields.rb', line 25587

def LienSeniority.field
  return 1954
end