Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse
- 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 ListQaScorecards request.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#qa_scorecards ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaScorecard>
The QaScorecards under the parent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse.
3902 3903 3904 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3902 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
3895 3896 3897 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3895 def next_page_token @next_page_token end |
#qa_scorecards ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaScorecard>
The QaScorecards under the parent.
Corresponds to the JSON property qaScorecards
3900 3901 3902 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3900 def qa_scorecards @qa_scorecards end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3907 3908 3909 3910 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3907 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @qa_scorecards = args[:qa_scorecards] if args.key?(:qa_scorecards) end |