Class: Quickfix::PaymentType

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

Returns a new instance of PaymentType.



30075
30076
30077
30078
30079
30080
30081
# File 'lib/quickfix_fields.rb', line 30075

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

Class Method Details

.fieldObject



30072
30073
30074
# File 'lib/quickfix_fields.rb', line 30072

def PaymentType.field
  return 40213
end