Class: Quickfix::ShortSaleReason

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

Returns a new instance of ShortSaleReason.



11563
11564
11565
11566
11567
11568
11569
# File 'lib/quickfix_fields.rb', line 11563

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

Class Method Details

.fieldObject



11560
11561
11562
# File 'lib/quickfix_fields.rb', line 11560

def ShortSaleReason.field
  return 853
end