Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ContinuousTestResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ContinuousTestResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#name ⇒ String
Corresponds to the JSON property
name. -
#result ⇒ String
Corresponds to the JSON property
result. -
#run_time ⇒ String
Corresponds to the JSON property
runTime. -
#test_case_results ⇒ Array<String>
Corresponds to the JSON property
testCaseResults.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ContinuousTestResult
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ContinuousTestResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ContinuousTestResult
Returns a new instance of GoogleCloudDialogflowCxV3beta1ContinuousTestResult.
3671 3672 3673 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3671 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Corresponds to the JSON property name
3654 3655 3656 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3654 def name @name end |
#result ⇒ String
Corresponds to the JSON property result
3659 3660 3661 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3659 def result @result end |
#run_time ⇒ String
Corresponds to the JSON property runTime
3664 3665 3666 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3664 def run_time @run_time end |
#test_case_results ⇒ Array<String>
Corresponds to the JSON property testCaseResults
3669 3670 3671 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3669 def test_case_results @test_case_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3676 3677 3678 3679 3680 3681 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3676 def update!(**args) @name = args[:name] if args.key?(:name) @result = args[:result] if args.key?(:result) @run_time = args[:run_time] if args.key?(:run_time) @test_case_results = args[:test_case_results] if args.key?(:test_case_results) end |