Class: Quickfix::RequestedPartyRole

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RequestedPartyRole

Returns a new instance of RequestedPartyRole.



20403
20404
20405
20406
20407
20408
20409
# File 'lib/quickfix_fields.rb', line 20403

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