Class: Quickfix::TickRuleType

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

Returns a new instance of TickRuleType.



16139
16140
16141
16142
16143
16144
16145
# File 'lib/quickfix_fields.rb', line 16139

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

Class Method Details

.fieldObject



16136
16137
16138
# File 'lib/quickfix_fields.rb', line 16136

def TickRuleType.field
  return 1209
end