Class: Quickfix::ReleaseQty

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ReleaseQty

Returns a new instance of ReleaseQty.



23679
23680
23681
23682
23683
23684
23685
# File 'lib/quickfix_fields.rb', line 23679

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

Class Method Details

.fieldObject



23676
23677
23678
# File 'lib/quickfix_fields.rb', line 23676

def ReleaseQty.field
  return 1811
end