Skip to content

Commit

Permalink
feat(v3beta1): added page in TestConfig (#270)
Browse files Browse the repository at this point in the history
* feat: added page in TestConfig

PiperOrigin-RevId: 433505834

Source-Link: googleapis/googleapis@e0b4fcf

Source-Link: googleapis/googleapis-gen@6c6eec2
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmM2ZWVjMjRkNjhiZjBhZDQ1ZTY3NjcyYmFmMTY3NDdjNzU4ZjdiMyJ9

* feat: added page in TestConfig

PiperOrigin-RevId: 433505834

Source-Link: googleapis/googleapis@e0b4fcf

Source-Link: googleapis/googleapis-gen@6c6eec2
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmM2ZWVjMjRkNjhiZjBhZDQ1ZTY3NjcyYmFmMTY3NDdjNzU4ZjdiMyJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Mar 10, 2022
1 parent 22b0e3b commit ae0279d
Showing 1 changed file with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,29 @@ class TestConfig(proto.Message):
Session parameters to be compared when
calculating differences.
flow (str):
Flow name. If not set, default start flow is assumed.
Format:
Flow name to start the test case with. Format:
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>``.
Only one of ``flow`` and ``page`` should be set to indicate
the starting point of the test case. If both are set,
``page`` takes precedence over ``flow``. If neither is set,
the test case will start with start page on the default
start flow.
page (str):
The [page][google.cloud.dialogflow.cx.v3beta1.Page] to start
the test case with. Format:
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>``.
Only one of ``flow`` and ``page`` should be set to indicate
the starting point of the test case. If both are set,
``page`` takes precedence over ``flow``. If neither is set,
the test case will start with start page on the default
start flow.
"""

tracking_parameters = proto.RepeatedField(proto.STRING, number=1,)
flow = proto.Field(proto.STRING, number=2,)
page = proto.Field(proto.STRING, number=3,)


class ConversationTurn(proto.Message):
Expand Down

0 comments on commit ae0279d

Please sign in to comment.