Class: Quickfix::NoAffectedOrders

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

Returns a new instance of NoAffectedOrders.



7325
7326
7327
7328
7329
7330
7331
# File 'lib/quickfix_fields.rb', line 7325

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

Class Method Details

.fieldObject



7322
7323
7324
# File 'lib/quickfix_fields.rb', line 7322

def NoAffectedOrders.field
  return 534
end