Class: Quickfix::UnderlyingSwapClass

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSwapClass

Returns a new instance of UnderlyingSwapClass.



26396
26397
26398
26399
26400
26401
26402
# File 'lib/quickfix_fields.rb', line 26396

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