Class: Quickfix::PaymentDate

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

Returns a new instance of PaymentDate.



6935
6936
6937
6938
6939
6940
6941
# File 'lib/quickfix_fields.rb', line 6935

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

Class Method Details

.fieldObject



6932
6933
6934
# File 'lib/quickfix_fields.rb', line 6932

def PaymentDate.field
  return 504
end