Class: Quickfix::UnsolicitedIndicator

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) ⇒ UnsolicitedIndicator

Returns a new instance of UnsolicitedIndicator.



4114
4115
4116
4117
4118
4119
4120
# File 'lib/quickfix_fields.rb', line 4114

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

Class Method Details

.fieldObject



4111
4112
4113
# File 'lib/quickfix_fields.rb', line 4111

def UnsolicitedIndicator.field
  return 325
end