Class: Quickfix::PossResend

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PossResend

Returns a new instance of PossResend.



3048
3049
3050
3051
3052
3053
3054
# File 'lib/quickfix_fields.rb', line 3048

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

Class Method Details

.fieldObject



3045
3046
3047
# File 'lib/quickfix_fields.rb', line 3045

def PossResend.field
	return 97
end