Class: Quickfix::NoEntitlementTypes

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

Returns a new instance of NoEntitlementTypes.



56933
56934
56935
56936
56937
56938
56939
# File 'lib/quickfix_fields.rb', line 56933

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

Class Method Details

.fieldObject



56930
56931
56932
# File 'lib/quickfix_fields.rb', line 56930

def NoEntitlementTypes.field
  return 2345
end