Class: Quickfix::SecurityRequestType

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

Returns a new instance of SecurityRequestType.



4062
4063
4064
4065
4066
4067
4068
# File 'lib/quickfix_fields.rb', line 4062

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

Class Method Details

.fieldObject



4059
4060
4061
# File 'lib/quickfix_fields.rb', line 4059

def SecurityRequestType.field
  return 321
end