Class: Quickfix::AttachmentEncodingType

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

Returns a new instance of AttachmentEncodingType.



40514
40515
40516
40517
40518
40519
40520
# File 'lib/quickfix_fields.rb', line 40514

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

Class Method Details

.fieldObject



40511
40512
40513
# File 'lib/quickfix_fields.rb', line 40511

def AttachmentEncodingType.field
  return 2109
end