Class: Quickfix::RelatedToStreamXIDRef

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RelatedToStreamXIDRef

Returns a new instance of RelatedToStreamXIDRef.



57895
57896
57897
57898
57899
57900
57901
# File 'lib/quickfix_fields.rb', line 57895

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