Class: Quickfix::MassCancelResponse

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MassCancelResponse

Returns a new instance of MassCancelResponse.



3659
3660
3661
3662
3663
3664
3665
# File 'lib/quickfix_fields.rb', line 3659

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

Class Method Details

.fieldObject



3656
3657
3658
# File 'lib/quickfix_fields.rb', line 3656

def MassCancelResponse.field
	return 531
end