Class: Quickfix::PaymentText

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

Returns a new instance of PaymentText.



30270
30271
30272
30273
30274
30275
30276
# File 'lib/quickfix_fields.rb', line 30270

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

Class Method Details

.fieldObject



30267
30268
30269
# File 'lib/quickfix_fields.rb', line 30267

def PaymentText.field
  return 40229
end