Class: Quickfix::VersusPurchaseDate

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

Returns a new instance of VersusPurchaseDate.



22925
22926
22927
22928
22929
22930
22931
# File 'lib/quickfix_fields.rb', line 22925

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

Class Method Details

.fieldObject



22922
22923
22924
# File 'lib/quickfix_fields.rb', line 22922

def VersusPurchaseDate.field
  return 1753
end