Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Participant
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Participant
- 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
-
#agent_desktop_source ⇒ String
Corresponds to the JSON property
agentDesktopSource. -
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property
documentsMetadataFilters. -
#name ⇒ String
Corresponds to the JSON property
name. -
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property
obfuscatedExternalUserId. -
#role ⇒ String
Corresponds to the JSON property
role.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Participant
constructor
A new instance of GoogleCloudDialogflowV2beta1Participant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Participant
Returns a new instance of GoogleCloudDialogflowV2beta1Participant.
18375 18376 18377 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18375 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_desktop_source ⇒ String
Corresponds to the JSON property agentDesktopSource
18353 18354 18355 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18353 def agent_desktop_source @agent_desktop_source end |
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property documentsMetadataFilters
18358 18359 18360 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18358 def @documents_metadata_filters end |
#name ⇒ String
Corresponds to the JSON property name
18363 18364 18365 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18363 def name @name end |
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property obfuscatedExternalUserId
18368 18369 18370 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18368 def @obfuscated_external_user_id end |
#role ⇒ String
Corresponds to the JSON property role
18373 18374 18375 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18373 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18380 18381 18382 18383 18384 18385 18386 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18380 def update!(**args) @agent_desktop_source = args[:agent_desktop_source] if args.key?(:agent_desktop_source) @documents_metadata_filters = args[:documents_metadata_filters] if args.key?(:documents_metadata_filters) @name = args[:name] if args.key?(:name) @obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id) @role = args[:role] if args.key?(:role) end |