Class: Quickfix::NoCommissions

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

Returns a new instance of NoCommissions.



62835
62836
62837
62838
62839
62840
62841
# File 'lib/quickfix_fields.rb', line 62835

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

Class Method Details

.fieldObject



62832
62833
62834
# File 'lib/quickfix_fields.rb', line 62832

def NoCommissions.field
  return 2639
end