Class: Quickfix::QuantityDate

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

Returns a new instance of QuantityDate.



13162
13163
13164
13165
13166
13167
13168
# File 'lib/quickfix_fields.rb', line 13162

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

Class Method Details

.fieldObject



13159
13160
13161
# File 'lib/quickfix_fields.rb', line 13159

def QuantityDate.field
  return 976
end