Class: Quickfix::NetworkRequestType

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

Returns a new instance of NetworkRequestType.



12616
12617
12618
12619
12620
12621
12622
# File 'lib/quickfix_fields.rb', line 12616

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

Class Method Details

.fieldObject



12613
12614
12615
# File 'lib/quickfix_fields.rb', line 12613

def NetworkRequestType.field
  return 935
end