Class: Quickfix::DeleteReason

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DeleteReason

Returns a new instance of DeleteReason.



3594
3595
3596
3597
3598
3599
3600
# File 'lib/quickfix_fields.rb', line 3594

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

Class Method Details

.fieldObject



3591
3592
3593
# File 'lib/quickfix_fields.rb', line 3591

def DeleteReason.field
	return 285
end