Class: Quickfix::UnderlyingAssignmentMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAssignmentMethod

Returns a new instance of UnderlyingAssignmentMethod.



26318
26319
26320
26321
26322
26323
26324
# File 'lib/quickfix_fields.rb', line 26318

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

Class Method Details

.fieldObject



26315
26316
26317
# File 'lib/quickfix_fields.rb', line 26315

def UnderlyingAssignmentMethod.field
  return 2010
end