Class: Quickfix::PaymentDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentDate

Returns a new instance of PaymentDate.



4491
4492
4493
4494
4495
4496
4497
# File 'lib/quickfix_fields.rb', line 4491

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

Class Method Details

.fieldObject



4488
4489
4490
# File 'lib/quickfix_fields.rb', line 4488

def PaymentDate.field
  return 504
end