Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3TestConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3TestConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Represents configurations for a test case.
Instance Attribute Summary collapse
-
#flow ⇒ String
Flow name to start the test case with.
-
#page ⇒ String
The page to start the test case with.
-
#tracking_parameters ⇒ Array<String>
Session parameters to be compared when calculating differences.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestConfig
constructor
A new instance of GoogleCloudDialogflowCxV3TestConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestConfig
Returns a new instance of GoogleCloudDialogflowCxV3TestConfig.
3063 3064 3065 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3063 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flow ⇒ String
Flow name to start the test case with. Format: projects//locations//agents//
flows/
. 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.
Corresponds to the JSON property flow
3047 3048 3049 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3047 def flow @flow end |
#page ⇒ String
The page to start the test case with. Format: projects//locations//agents//
flows//pages/
. 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.
Corresponds to the JSON property page
3056 3057 3058 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3056 def page @page end |
#tracking_parameters ⇒ Array<String>
Session parameters to be compared when calculating differences.
Corresponds to the JSON property trackingParameters
3061 3062 3063 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3061 def tracking_parameters @tracking_parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3068 3069 3070 3071 3072 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3068 def update!(**args) @flow = args[:flow] if args.key?(:flow) @page = args[:page] if args.key?(:page) @tracking_parameters = args[:tracking_parameters] if args.key?(:tracking_parameters) end |