Class: Quickfix::ExpirationCycle

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

Returns a new instance of ExpirationCycle.



11238
11239
11240
11241
11242
11243
11244
# File 'lib/quickfix_fields.rb', line 11238

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

Class Method Details

.fieldObject



11235
11236
11237
# File 'lib/quickfix_fields.rb', line 11235

def ExpirationCycle.field
  return 827
end