Class: Quickfix::QuoteID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteID

Returns a new instance of QuoteID.



10536
10537
10538
10539
10540
10541
10542
# File 'lib/quickfix_fields.rb', line 10536

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

Class Method Details

.fieldObject



10533
10534
10535
# File 'lib/quickfix_fields.rb', line 10533

def QuoteID.field
	return 117
end