Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata
- 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
Metadata about the agent dimension.
Instance Attribute Summary collapse
-
#agent_deployment_display_name ⇒ String
Optional.
-
#agent_deployment_id ⇒ String
Optional.
-
#agent_display_name ⇒ String
Optional.
-
#agent_id ⇒ String
Optional.
-
#agent_team ⇒ String
Optional.
-
#agent_version_display_name ⇒ String
Optional.
-
#agent_version_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata
Returns a new instance of GoogleCloudContactcenterinsightsV1mainDimensionAgentDimensionMetadata.
21338 21339 21340 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21338 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_deployment_display_name ⇒ String
Optional. The agent's deployment display name. Only applicable to automated
agents. This will be populated for AGENT_DEPLOYMENT_ID dimensions.
Corresponds to the JSON property agentDeploymentDisplayName
21299 21300 21301 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21299 def agent_deployment_display_name @agent_deployment_display_name end |
#agent_deployment_id ⇒ String
Optional. The agent's deployment ID. Only applicable to automated agents. This
will be populated for AGENT and AGENT_DEPLOYMENT_ID dimensions.
Corresponds to the JSON property agentDeploymentId
21305 21306 21307 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21305 def agent_deployment_id @agent_deployment_id end |
#agent_display_name ⇒ String
Optional. The agent's name This will be populated for AGENT, AGENT_TEAM,
AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
Corresponds to the JSON property agentDisplayName
21311 21312 21313 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21311 def agent_display_name @agent_display_name end |
#agent_id ⇒ String
Optional. A user-specified string representing the agent. This will be
populated for AGENT, AGENT_TEAM, AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
dimensions.
Corresponds to the JSON property agentId
21318 21319 21320 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21318 def agent_id @agent_id end |
#agent_team ⇒ String
Optional. A user-specified string representing the agent's team.
Corresponds to the JSON property agentTeam
21323 21324 21325 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21323 def agent_team @agent_team end |
#agent_version_display_name ⇒ String
Optional. The agent's version display name. Only applicable to automated
agents. This will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
dimensions.
Corresponds to the JSON property agentVersionDisplayName
21330 21331 21332 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21330 def agent_version_display_name @agent_version_display_name end |
#agent_version_id ⇒ String
Optional. The agent's version ID. Only applicable to automated agents. This
will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
Corresponds to the JSON property agentVersionId
21336 21337 21338 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21336 def agent_version_id @agent_version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21343 21344 21345 21346 21347 21348 21349 21350 21351 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21343 def update!(**args) @agent_deployment_display_name = args[:agent_deployment_display_name] if args.key?(:agent_deployment_display_name) @agent_deployment_id = args[:agent_deployment_id] if args.key?(:agent_deployment_id) @agent_display_name = args[:agent_display_name] if args.key?(:agent_display_name) @agent_id = args[:agent_id] if args.key?(:agent_id) @agent_team = args[:agent_team] if args.key?(:agent_team) @agent_version_display_name = args[:agent_version_display_name] if args.key?(:agent_version_display_name) @agent_version_id = args[:agent_version_id] if args.key?(:agent_version_id) end |