Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
The call participant speaking for a given utterance.
Instance Attribute Summary collapse
-
#dialogflow_participant ⇒ String
Deprecated.
-
#dialogflow_participant_name ⇒ String
The name of the participant provided by Dialogflow.
-
#obfuscated_external_user_id ⇒ String
Obfuscated user ID from Dialogflow.
-
#role ⇒ String
The role of the participant.
-
#user_id ⇒ String
A user-specified ID representing the participant.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant.
12985 12986 12987 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12985 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dialogflow_participant ⇒ String
Deprecated. Use dialogflow_participant_name instead. The name of the
Dialogflow participant. Format: projects/project/locations/location/
conversations/conversation/participants/participant
Corresponds to the JSON property dialogflowParticipant
12962 12963 12964 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12962 def dialogflow_participant @dialogflow_participant end |
#dialogflow_participant_name ⇒ String
The name of the participant provided by Dialogflow. Format: projects/project/
locations/location/conversations/conversation/participants/participant
Corresponds to the JSON property dialogflowParticipantName
12968 12969 12970 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12968 def dialogflow_participant_name @dialogflow_participant_name end |
#obfuscated_external_user_id ⇒ String
Obfuscated user ID from Dialogflow.
Corresponds to the JSON property obfuscatedExternalUserId
12973 12974 12975 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12973 def @obfuscated_external_user_id end |
#role ⇒ String
The role of the participant.
Corresponds to the JSON property role
12978 12979 12980 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12978 def role @role end |
#user_id ⇒ String
A user-specified ID representing the participant.
Corresponds to the JSON property userId
12983 12984 12985 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12983 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12990 12991 12992 12993 12994 12995 12996 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 12990 def update!(**args) @dialogflow_participant = args[:dialogflow_participant] if args.key?(:dialogflow_participant) @dialogflow_participant_name = args[:dialogflow_participant_name] if args.key?(:dialogflow_participant_name) @obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id) @role = args[:role] if args.key?(:role) @user_id = args[:user_id] if args.key?(:user_id) end |