Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse
- 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 for listing all feedback labels.
Instance Attribute Summary collapse
-
#feedback_labels ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1FeedbackLabel>
The feedback labels that match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1ListAllFeedbackLabelsResponse.
8617 8618 8619 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8617 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feedback_labels ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1FeedbackLabel>
The feedback labels that match the request.
Corresponds to the JSON property feedbackLabels
8609 8610 8611 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8609 def feedback_labels @feedback_labels end |
#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
8615 8616 8617 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8615 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8622 8623 8624 8625 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8622 def update!(**args) @feedback_labels = args[:feedback_labels] if args.key?(:feedback_labels) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |