Class: Quickfix::ApplID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ApplID

Returns a new instance of ApplID.



15736
15737
15738
15739
15740
15741
15742
# File 'lib/quickfix_fields.rb', line 15736

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

Class Method Details

.fieldObject



15733
15734
15735
# File 'lib/quickfix_fields.rb', line 15733

def ApplID.field
  return 1180
end