Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse
- 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 message for listing auto labeling rules.
Instance Attribute Summary collapse
-
#auto_labeling_rules ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AutoLabelingRule>
The auto labeling rules.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse.
6810 6811 6812 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_labeling_rules ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AutoLabelingRule>
The auto labeling rules.
Corresponds to the JSON property autoLabelingRules
6802 6803 6804 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6802 def auto_labeling_rules @auto_labeling_rules 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
6808 6809 6810 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6808 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6815 6816 6817 6818 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6815 def update!(**args) @auto_labeling_rules = args[:auto_labeling_rules] if args.key?(:auto_labeling_rules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |