Class: Quickfix::QuoteRejectReason

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteRejectReason

Returns a new instance of QuoteRejectReason.



3009
3010
3011
3012
3013
3014
3015
# File 'lib/quickfix_fields.rb', line 3009

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

Class Method Details

.fieldObject



3006
3007
3008
# File 'lib/quickfix_fields.rb', line 3006

def QuoteRejectReason.field
	return 300
end