Class: Quickfix::UnencodedAttachmentLen

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnencodedAttachmentLen

Returns a new instance of UnencodedAttachmentLen.



40527
40528
40529
40530
40531
40532
40533
# File 'lib/quickfix_fields.rb', line 40527

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

Class Method Details

.fieldObject



40524
40525
40526
# File 'lib/quickfix_fields.rb', line 40524

def UnencodedAttachmentLen.field
  return 2110
end