Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/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) ⇒ GoogleCloudDialogflowCxV3ContinuousTestResult
constructor
A new instance of GoogleCloudDialogflowCxV3ContinuousTestResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ContinuousTestResult
Returns a new instance of GoogleCloudDialogflowCxV3ContinuousTestResult.
1114 1115 1116 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1114 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Corresponds to the JSON property name
1097 1098 1099 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1097 def name @name end |
#result ⇒ String
Corresponds to the JSON property result
1102 1103 1104 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1102 def result @result end |
#run_time ⇒ String
Corresponds to the JSON property runTime
1107 1108 1109 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1107 def run_time @run_time end |
#test_case_results ⇒ Array<String>
Corresponds to the JSON property testCaseResults
1112 1113 1114 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1112 def test_case_results @test_case_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1119 1120 1121 1122 1123 1124 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1119 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 |