public StartReceiveVoiceCallStrategy(
      BusinessQueryManager businessQueryManager, CommunicationDto communicationDto, String prefix)
      throws MalformedURLException {

    super(prefix, businessQueryManager);
    this.communicationDto = communicationDto;

    communicationType = new CommunicationType();
    communicationType.setSourcePhoneNumber(communicationDto.getSourcePhoneNumber());
    communicationType.setDestinationPhoneNumber(communicationDto.getDestinationPhoneNumber());
    communicationType.setVersion(nextVersion);
  }