Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainConversationQualityMetadataAgentInfo

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

Information about an agent involved in the conversation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainConversationQualityMetadataAgentInfo

Returns a new instance of GoogleCloudContactcenterinsightsV1mainConversationQualityMetadataAgentInfo.



18129
18130
18131
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18129

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

Instance Attribute Details

#agent_idString

A user-specified string representing the agent. Corresponds to the JSON property agentId

Returns:

  • (String)


18065
18066
18067
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18065

def agent_id
  @agent_id
end

#agent_typeString

The agent type, e.g. HUMAN_AGENT. Corresponds to the JSON property agentType

Returns:

  • (String)


18070
18071
18072
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18070

def agent_type
  @agent_type
end

#deployment_display_nameString

The agent's deployment display name. Only applicable to automated agents. Corresponds to the JSON property deploymentDisplayName

Returns:

  • (String)


18075
18076
18077
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18075

def deployment_display_name
  @deployment_display_name
end

#deployment_idString

The agent's deployment ID. Only applicable to automated agents. Corresponds to the JSON property deploymentId

Returns:

  • (String)


18080
18081
18082
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18080

def deployment_id
  @deployment_id
end

#display_nameString

The agent's name. Corresponds to the JSON property displayName

Returns:

  • (String)


18085
18086
18087
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18085

def display_name
  @display_name
end

#disposition_codeString

A user-provided string indicating the outcome of the agent's segment of the call. Corresponds to the JSON property dispositionCode

Returns:

  • (String)


18091
18092
18093
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18091

def disposition_code
  @disposition_code
end

#entry_subagent_display_nameString

The entry subagent's display name. Corresponds to the JSON property entrySubagentDisplayName

Returns:

  • (String)


18096
18097
18098
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18096

def entry_subagent_display_name
  @entry_subagent_display_name
end

#entry_subagent_idString

The entry subagent's ID. Corresponds to the JSON property entrySubagentId

Returns:

  • (String)


18101
18102
18103
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18101

def entry_subagent_id
  @entry_subagent_id
end

#locationString

The agent's location. Corresponds to the JSON property location

Returns:

  • (String)


18106
18107
18108
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18106

def location
  @location
end

#teamString

A user-specified string representing the agent's team. Deprecated in favor of the teams field. Corresponds to the JSON property team

Returns:

  • (String)


18112
18113
18114
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18112

def team
  @team
end

#teamsArray<String>

User-specified strings representing the agent's teams. Corresponds to the JSON property teams

Returns:

  • (Array<String>)


18117
18118
18119
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18117

def teams
  @teams
end

#version_display_nameString

The agent's version display name. Only applicable to automated agents. Corresponds to the JSON property versionDisplayName

Returns:

  • (String)


18122
18123
18124
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18122

def version_display_name
  @version_display_name
end

#version_idString

The agent's version ID. Only applicable to automated agents. Corresponds to the JSON property versionId

Returns:

  • (String)


18127
18128
18129
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18127

def version_id
  @version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18134
18135
18136
18137
18138
18139
18140
18141
18142
18143
18144
18145
18146
18147
18148
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18134

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)
  @entry_subagent_display_name = args[:entry_subagent_display_name] if args.key?(:entry_subagent_display_name)
  @entry_subagent_id = args[:entry_subagent_id] if args.key?(:entry_subagent_id)
  @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