Class: Quickfix::TransferReason

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

Returns a new instance of TransferReason.



11277
11278
11279
11280
11281
11282
11283
# File 'lib/quickfix_fields.rb', line 11277

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

Class Method Details

.fieldObject



11274
11275
11276
# File 'lib/quickfix_fields.rb', line 11274

def TransferReason.field
  return 830
end