Class: Quickfix::CommissionAmountType

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

Returns a new instance of CommissionAmountType.



62861
62862
62863
62864
62865
62866
62867
# File 'lib/quickfix_fields.rb', line 62861

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

Class Method Details

.fieldObject



62858
62859
62860
# File 'lib/quickfix_fields.rb', line 62858

def CommissionAmountType.field
  return 2641
end