Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Assessment
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Assessment
- 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
The assessment resource.
Instance Attribute Summary collapse
-
#agent_info ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
Information about an agent involved in the conversation.
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Assessment
constructor
A new instance of GoogleCloudContactcenterinsightsV1Assessment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Assessment
Returns a new instance of GoogleCloudContactcenterinsightsV1Assessment.
1512 1513 1514 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1512 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_info ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
Information about an agent involved in the conversation.
Corresponds to the JSON property agentInfo
1489 1490 1491 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1489 def agent_info @agent_info end |
#create_time ⇒ String
Output only. The time at which the assessment was created.
Corresponds to the JSON property createTime
1494 1495 1496 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1494 def create_time @create_time end |
#name ⇒ String
Identifier. The resource name of the assessment. Format: projects/project/
locations/location/conversations/conversation/assessments/assessment
Corresponds to the JSON property name
1500 1501 1502 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1500 def name @name end |
#state ⇒ String
Output only. The state of the assessment.
Corresponds to the JSON property state
1505 1506 1507 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1505 def state @state end |
#update_time ⇒ String
Output only. The time at which the assessment was last updated.
Corresponds to the JSON property updateTime
1510 1511 1512 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1510 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1517 1518 1519 1520 1521 1522 1523 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1517 def update!(**args) @agent_info = args[:agent_info] if args.key?(:agent_info) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |