Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata

Returns a new instance of GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata.



2841
2842
2843
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2841

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_deployment_display_nameString

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

Returns:

  • (String)


2802
2803
2804
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2802

def agent_deployment_display_name
  @agent_deployment_display_name
end

#agent_deployment_idString

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

Returns:

  • (String)


2808
2809
2810
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2808

def agent_deployment_id
  @agent_deployment_id
end

#agent_display_nameString

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

Returns:

  • (String)


2814
2815
2816
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2814

def agent_display_name
  @agent_display_name
end

#agent_idString

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

Returns:

  • (String)


2821
2822
2823
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2821

def agent_id
  @agent_id
end

#agent_teamString

Optional. A user-specified string representing the agent's team. Corresponds to the JSON property agentTeam

Returns:

  • (String)


2826
2827
2828
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2826

def agent_team
  @agent_team
end

#agent_version_display_nameString

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

Returns:

  • (String)


2833
2834
2835
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2833

def agent_version_display_name
  @agent_version_display_name
end

#agent_version_idString

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

Returns:

  • (String)


2839
2840
2841
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2839

def agent_version_id
  @agent_version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2846
2847
2848
2849
2850
2851
2852
2853
2854
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2846

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