Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestCaseResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestCaseResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#conversation_turns ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurn>
Corresponds to the JSON property
conversationTurns. -
#environment ⇒ String
Corresponds to the JSON property
environment. -
#name ⇒ String
Corresponds to the JSON property
name. -
#test_result ⇒ String
Corresponds to the JSON property
testResult. -
#test_time ⇒ String
Corresponds to the JSON property
testTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TestCaseResult
constructor
A new instance of GoogleCloudDialogflowCxV3beta1TestCaseResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TestCaseResult
Returns a new instance of GoogleCloudDialogflowCxV3beta1TestCaseResult.
5878 5879 5880 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5878 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_turns ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurn>
Corresponds to the JSON property conversationTurns
5856 5857 5858 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5856 def conversation_turns @conversation_turns end |
#environment ⇒ String
Corresponds to the JSON property environment
5861 5862 5863 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5861 def environment @environment end |
#name ⇒ String
Corresponds to the JSON property name
5866 5867 5868 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5866 def name @name end |
#test_result ⇒ String
Corresponds to the JSON property testResult
5871 5872 5873 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5871 def test_result @test_result end |
#test_time ⇒ String
Corresponds to the JSON property testTime
5876 5877 5878 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5876 def test_time @test_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5883 5884 5885 5886 5887 5888 5889 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5883 def update!(**args) @conversation_turns = args[:conversation_turns] if args.key?(:conversation_turns) @environment = args[:environment] if args.key?(:environment) @name = args[:name] if args.key?(:name) @test_result = args[:test_result] if args.key?(:test_result) @test_time = args[:test_time] if args.key?(:test_time) end |