Class: Quickfix::UnsolicitedIndicator

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnsolicitedIndicator

Returns a new instance of UnsolicitedIndicator.



2112
2113
2114
2115
2116
2117
2118
# File 'lib/quickfix_fields.rb', line 2112

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

Class Method Details

.fieldObject



2109
2110
2111
# File 'lib/quickfix_fields.rb', line 2109

def UnsolicitedIndicator.field
	return 325
end