Class: Quickfix::TradeRequestStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeRequestStatus

Returns a new instance of TradeRequestStatus.



10263
10264
10265
10266
10267
10268
10269
# File 'lib/quickfix_fields.rb', line 10263

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