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.
18301 18302 18303 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18301 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_desktop_source ⇒ String
Corresponds to the JSON property agentDesktopSource
18279 18280 18281 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18279 def agent_desktop_source @agent_desktop_source end |
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property documentsMetadataFilters
18284 18285 18286 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18284 def @documents_metadata_filters end |
#name ⇒ String
Corresponds to the JSON property name
18289 18290 18291 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18289 def name @name end |
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property obfuscatedExternalUserId
18294 18295 18296 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18294 def @obfuscated_external_user_id end |
#role ⇒ String
Corresponds to the JSON property role
18299 18300 18301 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18299 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18306 18307 18308 18309 18310 18311 18312 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18306 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 |