Class: Quickfix::QuoteRequestType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteRequestType

Returns a new instance of QuoteRequestType.



3178
3179
3180
3181
3182
3183
3184
# File 'lib/quickfix_fields.rb', line 3178

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

Class Method Details

.fieldObject



3175
3176
3177
# File 'lib/quickfix_fields.rb', line 3175

def QuoteRequestType.field
	return 303
end