Class: Quickfix::TradeRequestStatus

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

Returns a new instance of TradeRequestStatus.



10263
10264
10265
10266
10267
10268
10269
# File 'lib/quickfix_fields.rb', line 10263

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

Class Method Details

.fieldObject



10260
10261
10262
# File 'lib/quickfix_fields.rb', line 10260

def TradeRequestStatus.field
  return 750
end