Class: Quickfix::StrikeTime

Inherits:
UtcTimeStampField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeTime

Returns a new instance of StrikeTime.



7117
7118
7119
7120
7121
7122
7123
# File 'lib/quickfix_fields.rb', line 7117

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

Class Method Details

.fieldObject



7114
7115
7116
# File 'lib/quickfix_fields.rb', line 7114

def StrikeTime.field
  return 443
end