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.
18612 18613 18614 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18612 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_desktop_source ⇒ String
Corresponds to the JSON property agentDesktopSource
18590 18591 18592 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18590 def agent_desktop_source @agent_desktop_source end |
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property documentsMetadataFilters
18595 18596 18597 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18595 def @documents_metadata_filters end |
#name ⇒ String
Corresponds to the JSON property name
18600 18601 18602 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18600 def name @name end |
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property obfuscatedExternalUserId
18605 18606 18607 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18605 def @obfuscated_external_user_id end |
#role ⇒ String
Corresponds to the JSON property role
18610 18611 18612 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18610 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18617 18618 18619 18620 18621 18622 18623 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18617 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 |