Interface ResponseMessage.PlayAudioOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResponseMessage.PlayAudio
,ResponseMessage.PlayAudio.Builder
- Enclosing class:
- ResponseMessage
public static interface ResponseMessage.PlayAudioOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAllowPlaybackInterruption()
Output only.String
getAudioUri()
Required.com.google.protobuf.ByteString
getAudioUriBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAudioUri
String getAudioUri()
Required. URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
string audio_uri = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The audioUri.
-
getAudioUriBytes
com.google.protobuf.ByteString getAudioUriBytes()
Required. URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
string audio_uri = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for audioUri.
-
getAllowPlaybackInterruption
boolean getAllowPlaybackInterruption()
Output only. Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.
bool allow_playback_interruption = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The allowPlaybackInterruption.
-
-