Class: Quickfix::NoBidComponents

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

Returns a new instance of NoBidComponents.



5245
5246
5247
5248
5249
5250
5251
# File 'lib/quickfix_fields.rb', line 5245

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

Class Method Details

.fieldObject



5242
5243
5244
# File 'lib/quickfix_fields.rb', line 5242

def NoBidComponents.field
  return 420
end