Class: Quickfix::PayRequestStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PayRequestStatus

Returns a new instance of PayRequestStatus.



77226
77227
77228
77229
77230
77231
77232
# File 'lib/quickfix_fields.rb', line 77226

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