Class: Quickfix::TradSesStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradSesStatus

Returns a new instance of TradSesStatus.



4309
4310
4311
4312
4313
4314
4315
# File 'lib/quickfix_fields.rb', line 4309

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

Class Method Details

.fieldObject



4306
4307
4308
# File 'lib/quickfix_fields.rb', line 4306

def TradSesStatus.field
  return 340
end