Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaScorecard

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

A QaScorecard represents a collection of questions to be scored during analysis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1QaScorecard

Returns a new instance of GoogleCloudContactcenterinsightsV1QaScorecard.



4501
4502
4503
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4501

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

Instance Attribute Details

#create_timeString

Output only. The time at which this scorecard was created. Corresponds to the JSON property createTime

Returns:

  • (String)


4478
4479
4480
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4478

def create_time
  @create_time
end

#descriptionString

A text description explaining the intent of the scorecard. Corresponds to the JSON property description

Returns:

  • (String)


4483
4484
4485
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4483

def description
  @description
end

#display_nameString

The user-specified display name of the scorecard. Corresponds to the JSON property displayName

Returns:

  • (String)


4488
4489
4490
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4488

def display_name
  @display_name
end

#nameString

Identifier. The scorecard name. Format: projects/project/locations/location /qaScorecards/qa_scorecard Corresponds to the JSON property name

Returns:

  • (String)


4494
4495
4496
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4494

def name
  @name
end

#update_timeString

Output only. The most recent time at which the scorecard was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


4499
4500
4501
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4499

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4506
4507
4508
4509
4510
4511
4512
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4506

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
end