Class: Quickfix::AttachmentKeyword

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AttachmentKeyword

Returns a new instance of AttachmentKeyword.



40579
40580
40581
40582
40583
40584
40585
# File 'lib/quickfix_fields.rb', line 40579

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