Class: Quickfix::SendingTime
- Inherits:
-
UtcTimeStampField
- Object
- UtcTimeStampField
- Quickfix::SendingTime
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ SendingTime
constructor
A new instance of SendingTime.
Constructor Details
#initialize(data = nil) ⇒ SendingTime
Returns a new instance of SendingTime.
18713 18714 18715 18716 18717 18718 18719 |
# File 'lib/quickfix_fields.rb', line 18713 def initialize(data = nil) if( data == nil ) super(52) else super(52, data) end end |
Class Method Details
.field ⇒ Object
18710 18711 18712 |
# File 'lib/quickfix_fields.rb', line 18710 def SendingTime.field return 52 end |