Interface ExportFlowResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportFlowResponse
,ExportFlowResponse.Builder
public interface ExportFlowResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportFlowResponse.FlowCase
getFlowCase()
com.google.protobuf.ByteString
getFlowContent()
Uncompressed raw byte content for flow.String
getFlowUri()
The URI to a file containing the exported flow.com.google.protobuf.ByteString
getFlowUriBytes()
The URI to a file containing the exported flow.boolean
hasFlowContent()
Uncompressed raw byte content for flow.boolean
hasFlowUri()
The URI to a file containing the exported flow.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFlowUri
boolean hasFlowUri()
The URI to a file containing the exported flow. This field is populated only if `flow_uri` is specified in [ExportFlowRequest][google.cloud.dialogflow.cx.v3beta1.ExportFlowRequest].
string flow_uri = 1;
- Returns:
- Whether the flowUri field is set.
-
getFlowUri
String getFlowUri()
The URI to a file containing the exported flow. This field is populated only if `flow_uri` is specified in [ExportFlowRequest][google.cloud.dialogflow.cx.v3beta1.ExportFlowRequest].
string flow_uri = 1;
- Returns:
- The flowUri.
-
getFlowUriBytes
com.google.protobuf.ByteString getFlowUriBytes()
The URI to a file containing the exported flow. This field is populated only if `flow_uri` is specified in [ExportFlowRequest][google.cloud.dialogflow.cx.v3beta1.ExportFlowRequest].
string flow_uri = 1;
- Returns:
- The bytes for flowUri.
-
hasFlowContent
boolean hasFlowContent()
Uncompressed raw byte content for flow.
bytes flow_content = 2;
- Returns:
- Whether the flowContent field is set.
-
getFlowContent
com.google.protobuf.ByteString getFlowContent()
Uncompressed raw byte content for flow.
bytes flow_content = 2;
- Returns:
- The flowContent.
-
getFlowCase
ExportFlowResponse.FlowCase getFlowCase()
-
-