Class: Quickfix::CollectAmount

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

Returns a new instance of CollectAmount.



22353
22354
22355
22356
22357
22358
22359
# File 'lib/quickfix_fields.rb', line 22353

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

Class Method Details

.fieldObject



22350
22351
22352
# File 'lib/quickfix_fields.rb', line 22350

def CollectAmount.field
  return 1711
end