Class: Quickfix::AttachmentName

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



40459
40460
40461
# File 'lib/quickfix_fields.rb', line 40459

def AttachmentName.field
  return 2105
end