/**@class android.service.voice.VoiceInteractionSession.CompleteVoiceRequest
@extends android.service.voice.VoiceInteractionSession.Request

 A request to simply inform the user that the voice operation has completed, as per
 {@link android.app.VoiceInteractor.CompleteVoiceRequest
 VoiceInteractor.CompleteVoiceRequest}.
*/
var CompleteVoiceRequest = {

/**Return the message informing the user of the completion, as per
 {@link android.app.VoiceInteractor.CompleteVoiceRequest
 VoiceInteractor.CompleteVoiceRequest}.
*/
getVoicePrompt : function(  ) {},

/**Return the message informing the user of the completion, as per
 {@link android.app.VoiceInteractor.CompleteVoiceRequest
 VoiceInteractor.CompleteVoiceRequest}.
@deprecated Prefer {@link #getVoicePrompt()} which allows a separate visual message.
*/
getMessage : function(  ) {},

/**Report that the voice interactor has finished completing the voice operation, resulting
 in a call to
 {@link android.app.VoiceInteractor.CompleteVoiceRequest#onCompleteResult
 VoiceInteractor.CompleteVoiceRequest.onCompleteResult}.
 This finishes the request (it is no longer active).
*/
sendCompleteResult : function(  ) {},


};