Class: Quickfix::CollAsgnID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollAsgnID

Returns a new instance of CollAsgnID.



12200
12201
12202
12203
12204
12205
12206
# File 'lib/quickfix_fields.rb', line 12200

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