Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
- 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_display_name ⇒ String
Optional.
-
#agent_id ⇒ String
Optional.
-
#agent_team ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata.
7428 7429 7430 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7428 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_display_name ⇒ String
Optional. The agent's name
Corresponds to the JSON property agentDisplayName
7416 7417 7418 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7416 def agent_display_name @agent_display_name end |
#agent_id ⇒ String
Optional. A user-specified string representing the agent.
Corresponds to the JSON property agentId
7421 7422 7423 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7421 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
7426 7427 7428 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7426 def agent_team @agent_team end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7433 7434 7435 7436 7437 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7433 def update!(**args) @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) end |