Class: Quickfix::QuantityDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuantityDate

Returns a new instance of QuantityDate.



3529
3530
3531
3532
3533
3534
3535
# File 'lib/quickfix_fields.rb', line 3529

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

Class Method Details

.fieldObject



3526
3527
3528
# File 'lib/quickfix_fields.rb', line 3526

def QuantityDate.field
  return 976
end