Class: Quickfix::AttachmentEncodingType

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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