Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo

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) ⇒ GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo

Returns a new instance of GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo.



3119
3120
3121
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3119

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)


3055
3056
3057
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3055

def agent_id
  @agent_id
end

#agent_typeString

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

Returns:

  • (String)


3060
3061
3062
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3060

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)


3065
3066
3067
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3065

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)


3070
3071
3072
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3070

def deployment_id
  @deployment_id
end

#display_nameString

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

Returns:

  • (String)


3075
3076
3077
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3075

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)


3081
3082
3083
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3081

def disposition_code
  @disposition_code
end

#entry_subagent_display_nameString

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

Returns:

  • (String)


3086
3087
3088
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3086

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)


3091
3092
3093
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3091

def entry_subagent_id
  @entry_subagent_id
end

#locationString

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

Returns:

  • (String)


3096
3097
3098
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3096

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)


3102
3103
3104
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3102

def team
  @team
end

#teamsArray<String>

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

Returns:

  • (Array<String>)


3107
3108
3109
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3107

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)


3112
3113
3114
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3112

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)


3117
3118
3119
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3117

def version_id
  @version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3124

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