Class: Quickfix::PriceMovementType

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

Returns a new instance of PriceMovementType.



25031
25032
25033
25034
25035
25036
25037
# File 'lib/quickfix_fields.rb', line 25031

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

Class Method Details

.fieldObject



25028
25029
25030
# File 'lib/quickfix_fields.rb', line 25028

def PriceMovementType.field
  return 1923
end