Class: Quickfix::UPICode

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UPICode

Returns a new instance of UPICode.



78279
78280
78281
78282
78283
78284
78285
# File 'lib/quickfix_fields.rb', line 78279

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