Class: Quickfix::NoPartyIDs

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

Returns a new instance of NoPartyIDs.



6298
6299
6300
6301
6302
6303
6304
# File 'lib/quickfix_fields.rb', line 6298

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

Class Method Details

.fieldObject



6295
6296
6297
# File 'lib/quickfix_fields.rb', line 6295

def NoPartyIDs.field
  return 453
end