Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
- 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
Information about an agent involved in the conversation.
Instance Attribute Summary collapse
-
#agent_id ⇒ String
A user-specified string representing the agent.
-
#display_name ⇒ String
The agent's name.
-
#disposition_code ⇒ String
A user-provided string indicating the outcome of the agent's segment of the call.
-
#team ⇒ String
A user-specified string representing the agent's team.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo.
4627 4628 4629 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4627 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_id ⇒ String
A user-specified string representing the agent.
Corresponds to the JSON property agentId
4609 4610 4611 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4609 def agent_id @agent_id end |
#display_name ⇒ String
The agent's name.
Corresponds to the JSON property displayName
4614 4615 4616 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4614 def display_name @display_name end |
#disposition_code ⇒ String
A user-provided string indicating the outcome of the agent's segment of the
call.
Corresponds to the JSON property dispositionCode
4620 4621 4622 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4620 def disposition_code @disposition_code end |
#team ⇒ String
A user-specified string representing the agent's team.
Corresponds to the JSON property team
4625 4626 4627 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4625 def team @team end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4632 4633 4634 4635 4636 4637 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4632 def update!(**args) @agent_id = args[:agent_id] if args.key?(:agent_id) @display_name = args[:display_name] if args.key?(:display_name) @disposition_code = args[:disposition_code] if args.key?(:disposition_code) @team = args[:team] if args.key?(:team) end |