Class: Quickfix::MaturityTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaturityTime

Returns a new instance of MaturityTime.



14423
14424
14425
14426
14427
14428
14429
# File 'lib/quickfix_fields.rb', line 14423

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