Class: Quickfix::CommissionAmountSubType

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

Returns a new instance of CommissionAmountSubType.



75965
75966
75967
75968
75969
75970
75971
# File 'lib/quickfix_fields.rb', line 75965

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

Class Method Details

.fieldObject



75962
75963
75964
# File 'lib/quickfix_fields.rb', line 75962

def CommissionAmountSubType.field
  return 2725
end