Class: Quickfix::PossResend

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PossResend

Returns a new instance of PossResend.



292
293
294
295
296
297
298
# File 'lib/quickfix_fields.rb', line 292

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

Class Method Details

.fieldObject



289
290
291
# File 'lib/quickfix_fields.rb', line 289

def PossResend.field
	return 97
end