Class: Quickfix::StartDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StartDate

Returns a new instance of StartDate.



12382
12383
12384
12385
12386
12387
12388
# File 'lib/quickfix_fields.rb', line 12382

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

Class Method Details

.fieldObject



12379
12380
12381
# File 'lib/quickfix_fields.rb', line 12379

def StartDate.field
  return 916
end