Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationDataset
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationDataset
- 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
-
#conversation_count ⇒ Fixnum
Corresponds to the JSON property
conversationCount. -
#conversation_info ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo
Corresponds to the JSON property
conversationInfo. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#description ⇒ String
Corresponds to the JSON property
description. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#input_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig
Corresponds to the JSON property
inputConfig. -
#name ⇒ String
Corresponds to the JSON property
name. -
#satisfies_pzi ⇒ Boolean
(also: #satisfies_pzi?)
Corresponds to the JSON property
satisfiesPzi. -
#satisfies_pzs ⇒ Boolean
(also: #satisfies_pzs?)
Corresponds to the JSON property
satisfiesPzs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationDataset
constructor
A new instance of GoogleCloudDialogflowV2ConversationDataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationDataset
Returns a new instance of GoogleCloudDialogflowV2ConversationDataset.
8427 8428 8429 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8427 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_count ⇒ Fixnum
Corresponds to the JSON property conversationCount
8383 8384 8385 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8383 def conversation_count @conversation_count end |
#conversation_info ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo
Corresponds to the JSON property conversationInfo
8388 8389 8390 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8388 def conversation_info @conversation_info end |
#create_time ⇒ String
Corresponds to the JSON property createTime
8393 8394 8395 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8393 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
8398 8399 8400 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8398 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
8403 8404 8405 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8403 def display_name @display_name end |
#input_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig
Corresponds to the JSON property inputConfig
8408 8409 8410 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8408 def input_config @input_config end |
#name ⇒ String
Corresponds to the JSON property name
8413 8414 8415 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8413 def name @name end |
#satisfies_pzi ⇒ Boolean Also known as: satisfies_pzi?
Corresponds to the JSON property satisfiesPzi
8418 8419 8420 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8418 def satisfies_pzi @satisfies_pzi end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
Corresponds to the JSON property satisfiesPzs
8424 8425 8426 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8424 def satisfies_pzs @satisfies_pzs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8432 def update!(**args) @conversation_count = args[:conversation_count] if args.key?(:conversation_count) @conversation_info = args[:conversation_info] if args.key?(:conversation_info) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @input_config = args[:input_config] if args.key?(:input_config) @name = args[:name] if args.key?(:name) @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi) @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs) end |