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.
18648 18649 18650 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18648 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_desktop_source ⇒ String
Corresponds to the JSON property agentDesktopSource
18626 18627 18628 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18626 def agent_desktop_source @agent_desktop_source end |
#documents_metadata_filters ⇒ Hash<String,String>
Corresponds to the JSON property documentsMetadataFilters
18631 18632 18633 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18631 def @documents_metadata_filters end |
#name ⇒ String
Corresponds to the JSON property name
18636 18637 18638 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18636 def name @name end |
#obfuscated_external_user_id ⇒ String
Corresponds to the JSON property obfuscatedExternalUserId
18641 18642 18643 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18641 def @obfuscated_external_user_id end |
#role ⇒ String
Corresponds to the JSON property role
18646 18647 18648 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18646 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18653 18654 18655 18656 18657 18658 18659 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18653 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 |