Class: Quickfix::ConfirmationMethod

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

Returns a new instance of ConfirmationMethod.



25239
25240
25241
25242
25243
25244
25245
# File 'lib/quickfix_fields.rb', line 25239

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

Class Method Details

.fieldObject



25236
25237
25238
# File 'lib/quickfix_fields.rb', line 25236

def ConfirmationMethod.field
  return 1927
end