Class: Quickfix::AttachmentName

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AttachmentName

Returns a new instance of AttachmentName.



40462
40463
40464
40465
40466
40467
40468
# File 'lib/quickfix_fields.rb', line 40462

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