Class: Quickfix::NegotiationMethod

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

Returns a new instance of NegotiationMethod.



40592
40593
40594
40595
40596
40597
40598
# File 'lib/quickfix_fields.rb', line 40592

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

Class Method Details

.fieldObject



40589
40590
40591
# File 'lib/quickfix_fields.rb', line 40589

def NegotiationMethod.field
  return 2115
end