Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse
- 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 response from a ListQaScorecardRevisions request.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#qa_scorecard_revisions ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaScorecardRevision>
The QaScorecards under the parent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse.
3876 3877 3878 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3876 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
3869 3870 3871 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3869 def next_page_token @next_page_token end |
#qa_scorecard_revisions ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaScorecardRevision>
The QaScorecards under the parent.
Corresponds to the JSON property qaScorecardRevisions
3874 3875 3876 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3874 def qa_scorecard_revisions @qa_scorecard_revisions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3881 3882 3883 3884 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3881 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @qa_scorecard_revisions = args[:qa_scorecard_revisions] if args.key?(:qa_scorecard_revisions) end |