Class: Quickfix::BidType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidType

Returns a new instance of BidType.



1085
1086
1087
1088
1089
1090
1091
# File 'lib/quickfix_fields.rb', line 1085

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

Class Method Details

.fieldObject



1082
1083
1084
# File 'lib/quickfix_fields.rb', line 1082

def BidType.field
  return 394
end