Class: Quickfix::AttachmentClassification

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AttachmentClassification

Returns a new instance of AttachmentClassification.



40488
40489
40490
40491
40492
40493
40494
# File 'lib/quickfix_fields.rb', line 40488

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