Class: Quickfix::UnderlyingSettlMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSettlMethod

Returns a new instance of UnderlyingSettlMethod.



13942
13943
13944
13945
13946
13947
13948
# File 'lib/quickfix_fields.rb', line 13942

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