@@ -162,13 +162,29 @@ class TestConfig(proto.Message):
162
162
Session parameters to be compared when
163
163
calculating differences.
164
164
flow (str):
165
- Flow name. If not set, default start flow is assumed.
166
- Format:
165
+ Flow name to start the test case with. Format:
167
166
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>``.
167
+
168
+ Only one of ``flow`` and ``page`` should be set to indicate
169
+ the starting point of the test case. If both are set,
170
+ ``page`` takes precedence over ``flow``. If neither is set,
171
+ the test case will start with start page on the default
172
+ start flow.
173
+ page (str):
174
+ The [page][google.cloud.dialogflow.cx.v3beta1.Page] to start
175
+ the test case with. Format:
176
+ ``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>``.
177
+
178
+ Only one of ``flow`` and ``page`` should be set to indicate
179
+ the starting point of the test case. If both are set,
180
+ ``page`` takes precedence over ``flow``. If neither is set,
181
+ the test case will start with start page on the default
182
+ start flow.
168
183
"""
169
184
170
185
tracking_parameters = proto .RepeatedField (proto .STRING , number = 1 ,)
171
186
flow = proto .Field (proto .STRING , number = 2 ,)
187
+ page = proto .Field (proto .STRING , number = 3 ,)
172
188
173
189
174
190
class ConversationTurn (proto .Message ):
0 commit comments