Class: Quickfix::AuctionType

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

Returns a new instance of AuctionType.



23575
23576
23577
23578
23579
23580
23581
# File 'lib/quickfix_fields.rb', line 23575

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

Class Method Details

.fieldObject



23572
23573
23574
# File 'lib/quickfix_fields.rb', line 23572

def AuctionType.field
  return 1803
end