Home | History | Annotate | Download | only in grpc

Lines Matching refs:response

24 /** Container for response and status objects for an asynchronous transcription upload request */
26 @Nullable private final TranscribeVoicemailAsyncResponse response;
29 public TranscriptionResponseAsync(TranscribeVoicemailAsyncResponse response) {
30 Assert.checkArgument(response != null);
31 this.response = response;
37 this.response = null;
41 if (response != null) {
42 return response.getTranscriptionId();
48 if (response != null) {
49 return response.getEstimatedWaitSecs() * 1_000L;
56 return super.toString() + ", response: " + response;