Class: Quickfix::SecurityRejectReason

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

Returns a new instance of SecurityRejectReason.



22054
22055
22056
22057
22058
22059
22060
# File 'lib/quickfix_fields.rb', line 22054

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

Class Method Details

.fieldObject



22051
22052
22053
# File 'lib/quickfix_fields.rb', line 22051

def SecurityRejectReason.field
  return 1607
end