Class: Quickfix::PayDisputeReason

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PayDisputeReason

Returns a new instance of PayDisputeReason.



77057
77058
77059
77060
77061
77062
77063
# File 'lib/quickfix_fields.rb', line 77057

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

Class Method Details

.fieldObject



77054
77055
77056
# File 'lib/quickfix_fields.rb', line 77054

def PayDisputeReason.field
  return 2800
end