Class: Quickfix::RefOrdIDReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RefOrdIDReason

Returns a new instance of RefOrdIDReason.



18947
18948
18949
18950
18951
18952
18953
# File 'lib/quickfix_fields.rb', line 18947

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