Class: Quickfix::SecurityRequestType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityRequestType

Returns a new instance of SecurityRequestType.



10939
10940
10941
10942
10943
10944
10945
# File 'lib/quickfix_fields.rb', line 10939

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

Class Method Details

.fieldObject



10936
10937
10938
# File 'lib/quickfix_fields.rb', line 10936

def SecurityRequestType.field
  return 321
end