Class: Quickfix::DeliveryDate

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

Returns a new instance of DeliveryDate.



10172
10173
10174
10175
10176
10177
10178
# File 'lib/quickfix_fields.rb', line 10172

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

Class Method Details

.fieldObject



10169
10170
10171
# File 'lib/quickfix_fields.rb', line 10169

def DeliveryDate.field
  return 743
end