Class: Quickfix::AdvId

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AdvId

Returns a new instance of AdvId.



13721
13722
13723
13724
13725
13726
13727
# File 'lib/quickfix_fields.rb', line 13721

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

Class Method Details

.fieldObject



13718
13719
13720
# File 'lib/quickfix_fields.rb', line 13718

def AdvId.field
  return 2
end