Interface Fulfillment.ConditionalCases.CaseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Fulfillment.ConditionalCases.Case
,Fulfillment.ConditionalCases.Case.Builder
- Enclosing class:
- Fulfillment.ConditionalCases
public static interface Fulfillment.ConditionalCases.CaseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Fulfillment.ConditionalCases.Case.CaseContent
getCaseContent(int index)
A list of case content.int
getCaseContentCount()
A list of case content.List<Fulfillment.ConditionalCases.Case.CaseContent>
getCaseContentList()
A list of case content.Fulfillment.ConditionalCases.Case.CaseContentOrBuilder
getCaseContentOrBuilder(int index)
A list of case content.List<? extends Fulfillment.ConditionalCases.Case.CaseContentOrBuilder>
getCaseContentOrBuilderList()
A list of case content.String
getCondition()
The condition to activate and select this case.com.google.protobuf.ByteString
getConditionBytes()
The condition to activate and select this case.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCondition
String getCondition()
The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against [form parameters][Form.parameters] or [session parameters][SessionInfo.parameters]. See the [conditions reference](https://cloud.google.com/dialogflow/cx/docs/reference/condition).
string condition = 1;
- Returns:
- The condition.
-
getConditionBytes
com.google.protobuf.ByteString getConditionBytes()
The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against [form parameters][Form.parameters] or [session parameters][SessionInfo.parameters]. See the [conditions reference](https://cloud.google.com/dialogflow/cx/docs/reference/condition).
string condition = 1;
- Returns:
- The bytes for condition.
-
getCaseContentList
List<Fulfillment.ConditionalCases.Case.CaseContent> getCaseContentList()
A list of case content.
repeated .google.cloud.dialogflow.cx.v3.Fulfillment.ConditionalCases.Case.CaseContent case_content = 2;
-
getCaseContent
Fulfillment.ConditionalCases.Case.CaseContent getCaseContent(int index)
A list of case content.
repeated .google.cloud.dialogflow.cx.v3.Fulfillment.ConditionalCases.Case.CaseContent case_content = 2;
-
getCaseContentCount
int getCaseContentCount()
A list of case content.
repeated .google.cloud.dialogflow.cx.v3.Fulfillment.ConditionalCases.Case.CaseContent case_content = 2;
-
getCaseContentOrBuilderList
List<? extends Fulfillment.ConditionalCases.Case.CaseContentOrBuilder> getCaseContentOrBuilderList()
A list of case content.
repeated .google.cloud.dialogflow.cx.v3.Fulfillment.ConditionalCases.Case.CaseContent case_content = 2;
-
getCaseContentOrBuilder
Fulfillment.ConditionalCases.Case.CaseContentOrBuilder getCaseContentOrBuilder(int index)
A list of case content.
repeated .google.cloud.dialogflow.cx.v3.Fulfillment.ConditionalCases.Case.CaseContent case_content = 2;
-
-