Class: Quickfix::PaymentRemitterID

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

Returns a new instance of PaymentRemitterID.



6948
6949
6950
6951
6952
6953
6954
# File 'lib/quickfix_fields.rb', line 6948

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

Class Method Details

.fieldObject



6945
6946
6947
# File 'lib/quickfix_fields.rb', line 6945

def PaymentRemitterID.field
  return 505
end