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.
18154 18155 18156 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_desktop_source ⇒ String
Corresponds to the JSON property agentDesktopSource
18132 18133 18134 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18132 def agent_desktop_source @agent_desktop_source end |
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property documentsMetadataFilters
18137 18138 18139 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18137 def @documents_metadata_filters end |
#name ⇒ String
Corresponds to the JSON property name
18142 18143 18144 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18142 def name @name end |
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property obfuscatedExternalUserId
18147 18148 18149 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18147 def @obfuscated_external_user_id end |
#role ⇒ String
Corresponds to the JSON property role
18152 18153 18154 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18152 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18159 18160 18161 18162 18163 18164 18165 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18159 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 |