google-apis-contactcenterinsights_v1 0.63.0 → 0.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +400 -0
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +3 -3
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +211 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +1279 -329
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66048336f698eb573672c691b7282ce51065cb5e61f0f6e97a3b9fb97d9e5d10
|
4
|
+
data.tar.gz: 7faa9bd376977bb55d607fa1fec0d7a77779ec4967c60c5ba9e34c2cd2ce494b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 204853d604a12f3bbeceff9078d8030f90f0b5efd0ffe56da6afb360aceba563ec5e42e4d8d04e3e13aa12be68f30f746be87e0f75f33e7dc72f2d6cf11fb6aa
|
7
|
+
data.tar.gz: e217dde1d16a6ecb5c24ea36f59f5a07abee7afada712a5ec1dde5da215548466e7aad54a6c7328f2e01753c241762418f1179e05ab40b2f80d5929caad08268
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.64.0 (2025-05-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250521
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.63.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250512
|
@@ -467,6 +467,19 @@ module Google
|
|
467
467
|
end
|
468
468
|
end
|
469
469
|
|
470
|
+
# The message to appeal an assessment.
|
471
|
+
class GoogleCloudContactcenterinsightsV1AppealAssessmentRequest
|
472
|
+
include Google::Apis::Core::Hashable
|
473
|
+
|
474
|
+
def initialize(**args)
|
475
|
+
update!(**args)
|
476
|
+
end
|
477
|
+
|
478
|
+
# Update properties of this object
|
479
|
+
def update!(**args)
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
470
483
|
# Agent Assist Article Suggestion data.
|
471
484
|
class GoogleCloudContactcenterinsightsV1ArticleSuggestionData
|
472
485
|
include Google::Apis::Core::Hashable
|
@@ -521,6 +534,110 @@ module Google
|
|
521
534
|
end
|
522
535
|
end
|
523
536
|
|
537
|
+
# The assessment resource.
|
538
|
+
class GoogleCloudContactcenterinsightsV1Assessment
|
539
|
+
include Google::Apis::Core::Hashable
|
540
|
+
|
541
|
+
# Information about an agent involved in the conversation.
|
542
|
+
# Corresponds to the JSON property `agentInfo`
|
543
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo]
|
544
|
+
attr_accessor :agent_info
|
545
|
+
|
546
|
+
# Output only. The time at which the assessment was created.
|
547
|
+
# Corresponds to the JSON property `createTime`
|
548
|
+
# @return [String]
|
549
|
+
attr_accessor :create_time
|
550
|
+
|
551
|
+
# Identifier. The resource name of the assessment. Format: projects/`project`/
|
552
|
+
# locations/`location`/conversations/`conversation`/assessments/`assessment`
|
553
|
+
# Corresponds to the JSON property `name`
|
554
|
+
# @return [String]
|
555
|
+
attr_accessor :name
|
556
|
+
|
557
|
+
# Output only. The state of the assessment.
|
558
|
+
# Corresponds to the JSON property `state`
|
559
|
+
# @return [String]
|
560
|
+
attr_accessor :state
|
561
|
+
|
562
|
+
# Output only. The time at which the assessment was last updated.
|
563
|
+
# Corresponds to the JSON property `updateTime`
|
564
|
+
# @return [String]
|
565
|
+
attr_accessor :update_time
|
566
|
+
|
567
|
+
def initialize(**args)
|
568
|
+
update!(**args)
|
569
|
+
end
|
570
|
+
|
571
|
+
# Update properties of this object
|
572
|
+
def update!(**args)
|
573
|
+
@agent_info = args[:agent_info] if args.key?(:agent_info)
|
574
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
575
|
+
@name = args[:name] if args.key?(:name)
|
576
|
+
@state = args[:state] if args.key?(:state)
|
577
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
578
|
+
end
|
579
|
+
end
|
580
|
+
|
581
|
+
# The CCAI Insights project wide assessment rule. This assessment rule will be
|
582
|
+
# applied to all conversations from the previous sampling cycle that match the
|
583
|
+
# sample rule defined in the assessment rule. One project can have multiple
|
584
|
+
# assessment rules.
|
585
|
+
class GoogleCloudContactcenterinsightsV1AssessmentRule
|
586
|
+
include Google::Apis::Core::Hashable
|
587
|
+
|
588
|
+
# If true, apply this rule to conversations. Otherwise, this rule is inactive.
|
589
|
+
# Corresponds to the JSON property `active`
|
590
|
+
# @return [Boolean]
|
591
|
+
attr_accessor :active
|
592
|
+
alias_method :active?, :active
|
593
|
+
|
594
|
+
# Output only. The time at which this assessment rule was created.
|
595
|
+
# Corresponds to the JSON property `createTime`
|
596
|
+
# @return [String]
|
597
|
+
attr_accessor :create_time
|
598
|
+
|
599
|
+
# Display Name of the assessment rule.
|
600
|
+
# Corresponds to the JSON property `displayName`
|
601
|
+
# @return [String]
|
602
|
+
attr_accessor :display_name
|
603
|
+
|
604
|
+
# Identifier. The resource name of the assessment rule. Format: projects/`
|
605
|
+
# project`/locations/`location`/assessmentRules/`assessment_rule`
|
606
|
+
# Corresponds to the JSON property `name`
|
607
|
+
# @return [String]
|
608
|
+
attr_accessor :name
|
609
|
+
|
610
|
+
# Message for sampling conversations.
|
611
|
+
# Corresponds to the JSON property `sampleRule`
|
612
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SampleRule]
|
613
|
+
attr_accessor :sample_rule
|
614
|
+
|
615
|
+
# Message for schedule info.
|
616
|
+
# Corresponds to the JSON property `scheduleInfo`
|
617
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ScheduleInfo]
|
618
|
+
attr_accessor :schedule_info
|
619
|
+
|
620
|
+
# Output only. The most recent time at which this assessment rule was updated.
|
621
|
+
# Corresponds to the JSON property `updateTime`
|
622
|
+
# @return [String]
|
623
|
+
attr_accessor :update_time
|
624
|
+
|
625
|
+
def initialize(**args)
|
626
|
+
update!(**args)
|
627
|
+
end
|
628
|
+
|
629
|
+
# Update properties of this object
|
630
|
+
def update!(**args)
|
631
|
+
@active = args[:active] if args.key?(:active)
|
632
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
633
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
634
|
+
@name = args[:name] if args.key?(:name)
|
635
|
+
@sample_rule = args[:sample_rule] if args.key?(:sample_rule)
|
636
|
+
@schedule_info = args[:schedule_info] if args.key?(:schedule_info)
|
637
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
638
|
+
end
|
639
|
+
end
|
640
|
+
|
524
641
|
# An AuthorizedView represents a view of accessible Insights resources (for
|
525
642
|
# example, Conversation and Scorecard). Who have read access to the
|
526
643
|
# AuthorizedView resource will have access to these Insight resources as well.
|
@@ -3131,6 +3248,20 @@ module Google
|
|
3131
3248
|
end
|
3132
3249
|
end
|
3133
3250
|
|
3251
|
+
# The message to finalize an assessment. Finalizing makes an assessment and its
|
3252
|
+
# notes immutable.
|
3253
|
+
class GoogleCloudContactcenterinsightsV1FinalizeAssessmentRequest
|
3254
|
+
include Google::Apis::Core::Hashable
|
3255
|
+
|
3256
|
+
def initialize(**args)
|
3257
|
+
update!(**args)
|
3258
|
+
end
|
3259
|
+
|
3260
|
+
# Update properties of this object
|
3261
|
+
def update!(**args)
|
3262
|
+
end
|
3263
|
+
end
|
3264
|
+
|
3134
3265
|
# A Cloud Storage source of conversation data.
|
3135
3266
|
class GoogleCloudContactcenterinsightsV1GcsSource
|
3136
3267
|
include Google::Apis::Core::Hashable
|
@@ -4047,6 +4178,58 @@ module Google
|
|
4047
4178
|
end
|
4048
4179
|
end
|
4049
4180
|
|
4181
|
+
# The response of listing assessment rules.
|
4182
|
+
class GoogleCloudContactcenterinsightsV1ListAssessmentRulesResponse
|
4183
|
+
include Google::Apis::Core::Hashable
|
4184
|
+
|
4185
|
+
# The assessment rules that match the request.
|
4186
|
+
# Corresponds to the JSON property `assessmentRules`
|
4187
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AssessmentRule>]
|
4188
|
+
attr_accessor :assessment_rules
|
4189
|
+
|
4190
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
4191
|
+
# field is omitted, there are no subsequent pages.
|
4192
|
+
# Corresponds to the JSON property `nextPageToken`
|
4193
|
+
# @return [String]
|
4194
|
+
attr_accessor :next_page_token
|
4195
|
+
|
4196
|
+
def initialize(**args)
|
4197
|
+
update!(**args)
|
4198
|
+
end
|
4199
|
+
|
4200
|
+
# Update properties of this object
|
4201
|
+
def update!(**args)
|
4202
|
+
@assessment_rules = args[:assessment_rules] if args.key?(:assessment_rules)
|
4203
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4204
|
+
end
|
4205
|
+
end
|
4206
|
+
|
4207
|
+
# The response of listing assessments.
|
4208
|
+
class GoogleCloudContactcenterinsightsV1ListAssessmentsResponse
|
4209
|
+
include Google::Apis::Core::Hashable
|
4210
|
+
|
4211
|
+
# The assessments that match the request.
|
4212
|
+
# Corresponds to the JSON property `assessments`
|
4213
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Assessment>]
|
4214
|
+
attr_accessor :assessments
|
4215
|
+
|
4216
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
4217
|
+
# field is omitted, there are no subsequent pages.
|
4218
|
+
# Corresponds to the JSON property `nextPageToken`
|
4219
|
+
# @return [String]
|
4220
|
+
attr_accessor :next_page_token
|
4221
|
+
|
4222
|
+
def initialize(**args)
|
4223
|
+
update!(**args)
|
4224
|
+
end
|
4225
|
+
|
4226
|
+
# Update properties of this object
|
4227
|
+
def update!(**args)
|
4228
|
+
@assessments = args[:assessments] if args.key?(:assessments)
|
4229
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4230
|
+
end
|
4231
|
+
end
|
4232
|
+
|
4050
4233
|
# The response from a ListAuthorizedViewSet request.
|
4051
4234
|
class GoogleCloudContactcenterinsightsV1ListAuthorizedViewSetsResponse
|
4052
4235
|
include Google::Apis::Core::Hashable
|
@@ -4189,6 +4372,32 @@ module Google
|
|
4189
4372
|
end
|
4190
4373
|
end
|
4191
4374
|
|
4375
|
+
# The response of listing notes.
|
4376
|
+
class GoogleCloudContactcenterinsightsV1ListNotesResponse
|
4377
|
+
include Google::Apis::Core::Hashable
|
4378
|
+
|
4379
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
4380
|
+
# field is omitted, there are no subsequent pages.
|
4381
|
+
# Corresponds to the JSON property `nextPageToken`
|
4382
|
+
# @return [String]
|
4383
|
+
attr_accessor :next_page_token
|
4384
|
+
|
4385
|
+
# The notes that match the request.
|
4386
|
+
# Corresponds to the JSON property `notes`
|
4387
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note>]
|
4388
|
+
attr_accessor :notes
|
4389
|
+
|
4390
|
+
def initialize(**args)
|
4391
|
+
update!(**args)
|
4392
|
+
end
|
4393
|
+
|
4394
|
+
# Update properties of this object
|
4395
|
+
def update!(**args)
|
4396
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4397
|
+
@notes = args[:notes] if args.key?(:notes)
|
4398
|
+
end
|
4399
|
+
end
|
4400
|
+
|
4192
4401
|
# The response of listing phrase matchers.
|
4193
4402
|
class GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
|
4194
4403
|
include Google::Apis::Core::Hashable
|
@@ -4319,6 +4528,120 @@ module Google
|
|
4319
4528
|
end
|
4320
4529
|
end
|
4321
4530
|
|
4531
|
+
# The conversation assessment note resource.
|
4532
|
+
class GoogleCloudContactcenterinsightsV1Note
|
4533
|
+
include Google::Apis::Core::Hashable
|
4534
|
+
|
4535
|
+
# A note about the entire parent assessment.
|
4536
|
+
# Corresponds to the JSON property `assessmentNote`
|
4537
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteAssessmentNote]
|
4538
|
+
attr_accessor :assessment_note
|
4539
|
+
|
4540
|
+
# The note content.
|
4541
|
+
# Corresponds to the JSON property `content`
|
4542
|
+
# @return [String]
|
4543
|
+
attr_accessor :content
|
4544
|
+
|
4545
|
+
# A note about a conversation turn.
|
4546
|
+
# Corresponds to the JSON property `conversationTurnNote`
|
4547
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteConversationTurnNote]
|
4548
|
+
attr_accessor :conversation_turn_note
|
4549
|
+
|
4550
|
+
# Output only. The time at which the note was created.
|
4551
|
+
# Corresponds to the JSON property `createTime`
|
4552
|
+
# @return [String]
|
4553
|
+
attr_accessor :create_time
|
4554
|
+
|
4555
|
+
# Identifier. The resource name of the note. Format: projects/`project`/
|
4556
|
+
# locations/`location`/conversations/`conversation`/assessments/`assessment`/
|
4557
|
+
# notes/`note`
|
4558
|
+
# Corresponds to the JSON property `name`
|
4559
|
+
# @return [String]
|
4560
|
+
attr_accessor :name
|
4561
|
+
|
4562
|
+
# Information about a user.
|
4563
|
+
# Corresponds to the JSON property `noteCreator`
|
4564
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1UserInfo]
|
4565
|
+
attr_accessor :note_creator
|
4566
|
+
|
4567
|
+
# A note about a QA question.
|
4568
|
+
# Corresponds to the JSON property `qaQuestionNote`
|
4569
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteQaQuestionNote]
|
4570
|
+
attr_accessor :qa_question_note
|
4571
|
+
|
4572
|
+
# Output only. The time at which the note was last updated.
|
4573
|
+
# Corresponds to the JSON property `updateTime`
|
4574
|
+
# @return [String]
|
4575
|
+
attr_accessor :update_time
|
4576
|
+
|
4577
|
+
def initialize(**args)
|
4578
|
+
update!(**args)
|
4579
|
+
end
|
4580
|
+
|
4581
|
+
# Update properties of this object
|
4582
|
+
def update!(**args)
|
4583
|
+
@assessment_note = args[:assessment_note] if args.key?(:assessment_note)
|
4584
|
+
@content = args[:content] if args.key?(:content)
|
4585
|
+
@conversation_turn_note = args[:conversation_turn_note] if args.key?(:conversation_turn_note)
|
4586
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
4587
|
+
@name = args[:name] if args.key?(:name)
|
4588
|
+
@note_creator = args[:note_creator] if args.key?(:note_creator)
|
4589
|
+
@qa_question_note = args[:qa_question_note] if args.key?(:qa_question_note)
|
4590
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
4591
|
+
end
|
4592
|
+
end
|
4593
|
+
|
4594
|
+
# A note about the entire parent assessment.
|
4595
|
+
class GoogleCloudContactcenterinsightsV1NoteAssessmentNote
|
4596
|
+
include Google::Apis::Core::Hashable
|
4597
|
+
|
4598
|
+
def initialize(**args)
|
4599
|
+
update!(**args)
|
4600
|
+
end
|
4601
|
+
|
4602
|
+
# Update properties of this object
|
4603
|
+
def update!(**args)
|
4604
|
+
end
|
4605
|
+
end
|
4606
|
+
|
4607
|
+
# A note about a conversation turn.
|
4608
|
+
class GoogleCloudContactcenterinsightsV1NoteConversationTurnNote
|
4609
|
+
include Google::Apis::Core::Hashable
|
4610
|
+
|
4611
|
+
# The conversation turn index that the note is associated with.
|
4612
|
+
# Corresponds to the JSON property `turnIndex`
|
4613
|
+
# @return [Fixnum]
|
4614
|
+
attr_accessor :turn_index
|
4615
|
+
|
4616
|
+
def initialize(**args)
|
4617
|
+
update!(**args)
|
4618
|
+
end
|
4619
|
+
|
4620
|
+
# Update properties of this object
|
4621
|
+
def update!(**args)
|
4622
|
+
@turn_index = args[:turn_index] if args.key?(:turn_index)
|
4623
|
+
end
|
4624
|
+
end
|
4625
|
+
|
4626
|
+
# A note about a QA question.
|
4627
|
+
class GoogleCloudContactcenterinsightsV1NoteQaQuestionNote
|
4628
|
+
include Google::Apis::Core::Hashable
|
4629
|
+
|
4630
|
+
# The question resource that the note is associated with.
|
4631
|
+
# Corresponds to the JSON property `qaQuestion`
|
4632
|
+
# @return [String]
|
4633
|
+
attr_accessor :qa_question
|
4634
|
+
|
4635
|
+
def initialize(**args)
|
4636
|
+
update!(**args)
|
4637
|
+
end
|
4638
|
+
|
4639
|
+
# Update properties of this object
|
4640
|
+
def update!(**args)
|
4641
|
+
@qa_question = args[:qa_question] if args.key?(:qa_question)
|
4642
|
+
end
|
4643
|
+
end
|
4644
|
+
|
4322
4645
|
# The data for a matched phrase matcher. Represents information identifying a
|
4323
4646
|
# phrase matcher for a given match.
|
4324
4647
|
class GoogleCloudContactcenterinsightsV1PhraseMatchData
|
@@ -4510,6 +4833,21 @@ module Google
|
|
4510
4833
|
end
|
4511
4834
|
end
|
4512
4835
|
|
4836
|
+
# The message to publish an assessment. Draft and appealed assessments can be
|
4837
|
+
# published. Publishing simply changes the state of the assessment to published,
|
4838
|
+
# allowing the console and authorized views to filter on the state.
|
4839
|
+
class GoogleCloudContactcenterinsightsV1PublishAssessmentRequest
|
4840
|
+
include Google::Apis::Core::Hashable
|
4841
|
+
|
4842
|
+
def initialize(**args)
|
4843
|
+
update!(**args)
|
4844
|
+
end
|
4845
|
+
|
4846
|
+
# Update properties of this object
|
4847
|
+
def update!(**args)
|
4848
|
+
end
|
4849
|
+
end
|
4850
|
+
|
4513
4851
|
# An answer to a QaQuestion.
|
4514
4852
|
class GoogleCloudContactcenterinsightsV1QaAnswer
|
4515
4853
|
include Google::Apis::Core::Hashable
|
@@ -5758,6 +6096,49 @@ module Google
|
|
5758
6096
|
end
|
5759
6097
|
end
|
5760
6098
|
|
6099
|
+
# Message for schedule info.
|
6100
|
+
class GoogleCloudContactcenterinsightsV1ScheduleInfo
|
6101
|
+
include Google::Apis::Core::Hashable
|
6102
|
+
|
6103
|
+
# End time of the schedule. If not specified, will keep scheduling new pipelines
|
6104
|
+
# for execution util the schedule is no longer active or deleted.
|
6105
|
+
# Corresponds to the JSON property `endTime`
|
6106
|
+
# @return [String]
|
6107
|
+
attr_accessor :end_time
|
6108
|
+
|
6109
|
+
# The groc expression. Format: `every number [synchronized]` Time units can be:
|
6110
|
+
# minutes, hours Synchronized is optional and indicates that the schedule should
|
6111
|
+
# be synchronized to the start of the interval: every 5 minutes synchronized
|
6112
|
+
# means 00:00, 00:05 ... Otherwise the start time is random within the interval.
|
6113
|
+
# Example: `every 5 minutes` could be 00:02, 00:07, 00:12, ...
|
6114
|
+
# Corresponds to the JSON property `schedule`
|
6115
|
+
# @return [String]
|
6116
|
+
attr_accessor :schedule
|
6117
|
+
|
6118
|
+
# Start time of the schedule. If not specified, will start as soon as the
|
6119
|
+
# schedule is created.
|
6120
|
+
# Corresponds to the JSON property `startTime`
|
6121
|
+
# @return [String]
|
6122
|
+
attr_accessor :start_time
|
6123
|
+
|
6124
|
+
# The timezone to use for the groc expression. If not specified, defaults to UTC.
|
6125
|
+
# Corresponds to the JSON property `timeZone`
|
6126
|
+
# @return [String]
|
6127
|
+
attr_accessor :time_zone
|
6128
|
+
|
6129
|
+
def initialize(**args)
|
6130
|
+
update!(**args)
|
6131
|
+
end
|
6132
|
+
|
6133
|
+
# Update properties of this object
|
6134
|
+
def update!(**args)
|
6135
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
6136
|
+
@schedule = args[:schedule] if args.key?(:schedule)
|
6137
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
6138
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
6139
|
+
end
|
6140
|
+
end
|
6141
|
+
|
5761
6142
|
# The response from a ListAuthorizedViews request.
|
5762
6143
|
class GoogleCloudContactcenterinsightsV1SearchAuthorizedViewsResponse
|
5763
6144
|
include Google::Apis::Core::Hashable
|
@@ -6270,6 +6651,25 @@ module Google
|
|
6270
6651
|
end
|
6271
6652
|
end
|
6272
6653
|
|
6654
|
+
# Information about a user.
|
6655
|
+
class GoogleCloudContactcenterinsightsV1UserInfo
|
6656
|
+
include Google::Apis::Core::Hashable
|
6657
|
+
|
6658
|
+
# The user's username.
|
6659
|
+
# Corresponds to the JSON property `username`
|
6660
|
+
# @return [String]
|
6661
|
+
attr_accessor :username
|
6662
|
+
|
6663
|
+
def initialize(**args)
|
6664
|
+
update!(**args)
|
6665
|
+
end
|
6666
|
+
|
6667
|
+
# Update properties of this object
|
6668
|
+
def update!(**args)
|
6669
|
+
@username = args[:username] if args.key?(:username)
|
6670
|
+
end
|
6671
|
+
end
|
6672
|
+
|
6273
6673
|
# The View resource.
|
6274
6674
|
class GoogleCloudContactcenterinsightsV1View
|
6275
6675
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenterinsightsV1
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|