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.
8441 8442 8443 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_count ⇒ Fixnum
Corresponds to the JSON property conversationCount
8397 8398 8399 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8397 def conversation_count @conversation_count end |
#conversation_info ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo
Corresponds to the JSON property conversationInfo
8402 8403 8404 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8402 def conversation_info @conversation_info end |
#create_time ⇒ String
Corresponds to the JSON property createTime
8407 8408 8409 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8407 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
8412 8413 8414 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8412 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
8417 8418 8419 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8417 def display_name @display_name end |
#input_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig
Corresponds to the JSON property inputConfig
8422 8423 8424 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8422 def input_config @input_config end |
#name ⇒ String
Corresponds to the JSON property name
8427 8428 8429 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8427 def name @name end |
#satisfies_pzi ⇒ Boolean Also known as: satisfies_pzi?
Corresponds to the JSON property satisfiesPzi
8432 8433 8434 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8432 def satisfies_pzi @satisfies_pzi end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
Corresponds to the JSON property satisfiesPzs
8438 8439 8440 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8438 def satisfies_pzs @satisfies_pzs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8446 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 |