Class: Quickfix::UnderlyingStrikeCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikeCurrency

Returns a new instance of UnderlyingStrikeCurrency.



12694
12695
12696
12697
12698
12699
12700
# File 'lib/quickfix_fields.rb', line 12694

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