Class: Quickfix::NoAttachments

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

Returns a new instance of NoAttachments.



40449
40450
40451
40452
40453
40454
40455
# File 'lib/quickfix_fields.rb', line 40449

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

Class Method Details

.fieldObject



40446
40447
40448
# File 'lib/quickfix_fields.rb', line 40446

def NoAttachments.field
  return 2104
end