Class: Quickfix::MassCancelRejectReason

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ MassCancelRejectReason

Returns a new instance of MassCancelRejectReason.



7299
7300
7301
7302
7303
7304
7305
# File 'lib/quickfix_fields.rb', line 7299

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

Class Method Details

.fieldObject



7296
7297
7298
# File 'lib/quickfix_fields.rb', line 7296

def MassCancelRejectReason.field
	return 532
end