Class: Quickfix::CommissionDesc

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ CommissionDesc

Returns a new instance of CommissionDesc.



62978
62979
62980
62981
62982
62983
62984
# File 'lib/quickfix_fields.rb', line 62978

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

Class Method Details

.fieldObject



62975
62976
62977
# File 'lib/quickfix_fields.rb', line 62975

def CommissionDesc.field
  return 2650
end