Class: Quickfix::PayDisputeReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PayDisputeReason

Returns a new instance of PayDisputeReason.



77057
77058
77059
77060
77061
77062
77063
# File 'lib/quickfix_fields.rb', line 77057

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