Class: Quickfix::URLLink

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ URLLink

Returns a new instance of URLLink.



8196
8197
8198
8199
8200
8201
8202
# File 'lib/quickfix_fields.rb', line 8196

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

Class Method Details

.fieldObject



8193
8194
8195
# File 'lib/quickfix_fields.rb', line 8193

def URLLink.field
  return 149
end