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.
-
#agent_type ⇒ String
The agent type, e.g.
-
#deployment_display_name ⇒ String
The agent's deployment display name.
-
#deployment_id ⇒ String
The agent's deployment ID.
-
#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.
-
#location ⇒ String
The agent's location.
-
#team ⇒ String
A user-specified string representing the agent's team.
-
#teams ⇒ Array<String>
User-specified strings representing the agent's teams.
-
#version_display_name ⇒ String
The agent's version display name.
-
#version_id ⇒ String
The agent's version ID.
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.
8587 8588 8589 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8587 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
8533 8534 8535 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8533 def agent_id @agent_id end |
#agent_type ⇒ String
The agent type, e.g. HUMAN_AGENT.
Corresponds to the JSON property agentType
8538 8539 8540 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8538 def agent_type @agent_type end |
#deployment_display_name ⇒ String
The agent's deployment display name. Only applicable to automated agents.
Corresponds to the JSON property deploymentDisplayName
8543 8544 8545 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8543 def deployment_display_name @deployment_display_name end |
#deployment_id ⇒ String
The agent's deployment ID. Only applicable to automated agents.
Corresponds to the JSON property deploymentId
8548 8549 8550 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8548 def deployment_id @deployment_id end |
#display_name ⇒ String
The agent's name.
Corresponds to the JSON property displayName
8553 8554 8555 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8553 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
8559 8560 8561 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8559 def disposition_code @disposition_code end |
#location ⇒ String
The agent's location.
Corresponds to the JSON property location
8564 8565 8566 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8564 def location @location end |
#team ⇒ String
A user-specified string representing the agent's team. Deprecated in favor of
the teams field.
Corresponds to the JSON property team
8570 8571 8572 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8570 def team @team end |
#teams ⇒ Array<String>
User-specified strings representing the agent's teams.
Corresponds to the JSON property teams
8575 8576 8577 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8575 def teams @teams end |
#version_display_name ⇒ String
The agent's version display name. Only applicable to automated agents.
Corresponds to the JSON property versionDisplayName
8580 8581 8582 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8580 def version_display_name @version_display_name end |
#version_id ⇒ String
The agent's version ID. Only applicable to automated agents.
Corresponds to the JSON property versionId
8585 8586 8587 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8585 def version_id @version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8592 def update!(**args) @agent_id = args[:agent_id] if args.key?(:agent_id) @agent_type = args[:agent_type] if args.key?(:agent_type) @deployment_display_name = args[:deployment_display_name] if args.key?(:deployment_display_name) @deployment_id = args[:deployment_id] if args.key?(:deployment_id) @display_name = args[:display_name] if args.key?(:display_name) @disposition_code = args[:disposition_code] if args.key?(:disposition_code) @location = args[:location] if args.key?(:location) @team = args[:team] if args.key?(:team) @teams = args[:teams] if args.key?(:teams) @version_display_name = args[:version_display_name] if args.key?(:version_display_name) @version_id = args[:version_id] if args.key?(:version_id) end |