Class: Quickfix::NoEntitlementAttrib

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

Returns a new instance of NoEntitlementAttrib.



23237
23238
23239
23240
23241
23242
23243
# File 'lib/quickfix_fields.rb', line 23237

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

Class Method Details

.fieldObject



23234
23235
23236
# File 'lib/quickfix_fields.rb', line 23234

def NoEntitlementAttrib.field
  return 1777
end